Skip to content

Instantly share code, notes, and snippets.

@bertwagner
Created February 12, 2017 19:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bertwagner/33a8d514f8d9b25875069e05db2dcea7 to your computer and use it in GitHub Desktop.
Save bertwagner/33a8d514f8d9b25875069e05db2dcea7 to your computer and use it in GitHub Desktop.
TSQL Tuesday 87 Parsing JSON in SQL
SELECT
JSON_VALUE(value, '$.name')
FROM
OPENJSON(@WebsiteJson,'$.Users')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment