importer json dans sql server code example
Example 1: sql server import json
If (ISJSON(@JSON)=1)
SELECT @JSON AS 'JSON Text'
Example 2: sql server import json
SELECT ISJSON(@JSON)
If (ISJSON(@JSON)=1)
SELECT @JSON AS 'JSON Text'
SELECT ISJSON(@JSON)