Extract Values from JSON String Column in SQL Server
JSON is commonly used in modern applications for data storage and transfers. Pretty much all programming languages provide APIs to parse JSON.
From SQL Server 2016 on wards, JSON functions are commonly supported. You can use JSON_VALUE function to extract data from JSON columns.
Refer to the following page about more details of JSON functions:
Code snippet
WITH JSON_STR AS ( select '{"Name":"A","Value":2}' as JSON_COLUMN ) SELECT json_value(JSON_COLUMN, '$.Name') as Name, json_value(JSON_COLUMN, '$.Value') as Value from JSON_STR;
info Last modified by Raymond 3 years ago
copyright
This page is subject to Site terms.
comment Comments
No comments yet.