T-SQL query that takes json columnar data and displays it in row format
In an Azure SQL database, I have a column that is storing json data. SELECT a.Response FROM [dbo].[Api] a The result of this query is json in columnar format { "PRODUCT": { "0": "a1", "1": "a2", "2": "a3", "3": "a4" }, "STOCK": { "0": 3.0, "1": 3.0, "2": 0.5, "3": 6.0 }, "SALES": { "0":… Read More T-SQL query that takes json columnar data and displays it in row format