使用内置函数 (SQL Server) 验证、查询和更改 JSON 数据
使用 OPENJSON 分析和转换 JSON 数据 (SQL Server)
1、JSON 内置函数
ISJSON 测试字符串是否包含有效 JSON。
JSON_VALUE 从 JSON 字符串中提取标量值。
JSON_QUERY 从 JSON 字符串中提取对象或数组。
JSON_MODIFY 更新 JSON 字符串中属性的值,并返回已更新的 JSON 字符串。
2、示例 JSON 文本
{
"id": "WakefieldFamily",
"parents": [
{
"familyName": "Wakefield",
"givenName": "Robin"
},
{
"familyName": "Miller",
"givenName": "Ben"
}
],
"children": [
{
"familyName": "Merriam",
"givenName": "Jesse",
"gender": "female",
"grade": 1,
"pets": [
{
"givenName": "Goofy"
},
{
"givenName": "Shadow"
}
]
},
{
"familyName": "Miller",
"givenName": "Lisa",
"gender": "female",
"grade": 8
}
],
"address": {
"state": "NY",
"county": "Manhattan",
"city": "NY"
},
"creationDate": 1431620462,
"isRegistered": false
}
3、新建表,插入测试数据
CREATE TABLE Families (
id int identity constraint PK_JSON_ID primary key,
doc nvarchar(max)
)
INSERT INTO [dbo].[Families] ([doc]) VALUES ('{"id":"WakefieldFamily","parents":[{"familyName":"Wakefield","givenName":"Robin"},{"familyName":"Miller","givenName":"Ben"}],"children":[{"familyName":"Merriam","givenName":"Jesse","gender":"female","grade":1,"pets":[{"givenName":"Goofy"},{"givenName":"Shadow"}]},{"familyName":"Miller","givenName":"Lisa","gender":"female","grade":8}],"address":{"state":"NY","county":"Manhattan","city":"NY"},"creationDate":1431620462,"isRegistered":false}')
GO
INSERT INTO [dbo].[Families] ([doc]) VALUES ('{"id":"WakefieldFamily","parents":[{"familyName":"Wakefield","givenName":"Robin"},{"familyName":"Miller","givenName":"Ben"}],"children":[{"familyName":"Merriam","givenName":"Jesse","gender":"female","grade":1,"pets":[{"givenName":"Goofy"},{"givenName":"Shadow"}]},{"familyName":"Miller","givenName":"Lisa","gender":"female","grade":8}],"address":{"state":"NY","county":"Manhattan","city":"NY"},"creationDate":1431620462,"isRegistered":false}')
GO
INSERT INTO [dbo].[Families] ([doc]) VALUES ('{"id":"WakefieldFamily","parents":[{"familyName":"Wakefield","givenName":"Robin"},{"familyName":"Miller","givenName":"Ben"}],"children":[{"familyName":"Merriam","givenName":"Jesse","gender":"female","grade":1,"pets":[{"givenName":"Goofy"},{"givenName":"Shadow"}]},{"familyName":"Miller","givenName":"Lisa","gender":"female","grade":8}],"address":{"state":"NY","county":"Manhattan","city":"NY"},"creationDate":1431620462,"isRegistered":false}')
GO
4、使用 JSON_VALUE 函数从 JSON 文本中提取值
SELECT JSON_VALUE(, '$.id') AS Name,
JSON_VALUE(, '$.') AS City,
JSON_VALUE(, '$.') AS County
FROM Families f
WHERE JSON_VALUE(, '$.id') = N'AndersenFamily'
ORDER BY JSON_VALUE(, '$.') DESC, JSON_VALUE(, '$.') ASC
5、使用 JSON_QUERY 函数从 JSON 文本中提取对象或数组
SELECT JSON_QUERY(, '$.address') AS Address,
JSON_QUERY(, '$.parents') AS Parents,
JSON_QUERY(, '$.parents[0]') AS Parent0
FROM Families f
WHERE JSON_VALUE(, '$.id') = N'AndersenFamily'
*
*
*