Skip to content
Advertisement

How to format query result to show result in a specific json output

I am trying to learn how to format my result from SQL query to have my output as JSON. I will really appreciate if someone could guide as I will generate my results in different types of charts.

For instance, one chart need to have the following JSON structure:

and I am using Northwind stored procedure

With the above I have results as

I want to plot x-axis as products and y-axis unit price as in the structure explained above. I will really appreciate if someone could guide how I can design my own structure in SQL.

Advertisement

Answer

In SQL Server it’s fairly simple to generate arrays of objects in JSON, e.g.: the top 10 most expensive products in the AdventureWorks database…

Generating raw arrays is a little more difficult and depends on tricks like combining json_query() with stuff() and for xml. stuff() and for xml is commonly used to build delimited lists of data, such as a comma-separated list of numbers. We can then use json_query() on that is used to return the raw values for for json, e.g.:

To get your desired structure builds on that by using for json path and without_array_wrapper to remove the surrounding [] characters…

Note that series is generated as an object array, which is the result of embedding it in its own CTE.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement