Prepare some data first: Create a temporary table to store: DECLARE @json_table AS TABLE ( [type] NVARCHAR(MAX), [desc] NVARCHAR(MAX) ) Source Code Ge...
Prepare some data first:
Create a temporary table to store:
DECLARE @json_table AS TABLE ( [type] NVARCHAR(MAX), [desc] NVARCHAR(MAX) )