gpt4 book ai didi

json - "expand"/在 MSSQL 上通过 JSON 值加入 SQL 选择

转载 作者:行者123 更新时间:2023-12-01 17:22:16 26 4
gpt4 key购买 nike

我遇到了一个问题,我的表有两列,其中包含 JSON 数据。我一直在阅读 Microsoft 关于在 MSSQL 中使用 JSON 的文档,但似乎无法解决我的具体问题。

考虑一下我表中单行的这个相当简单的示例: enter image description here

我想要实现的是将 LocationsJSONAssigneesJSON 的值连接到自身上,并希望以这些方式结束: enter image description here

在查看 Microsoft 的文档时似乎是可能的,但我似乎无法以正确的方式解决问题。

最佳答案

SQL Server 2016 中添加了 JSON 支持。您将无法在早期版本中解析 JSON 字符串。

您可以在 FROM 子句中将 CROSS APPLY 与任何返回表的函数一起使用,以对函数的结果执行交叉“连接”。在这种情况下,您需要的功能是 OPENJSON .

以下代码:

declare @table table (id int, json1 nvarchar(max), json2 nvarchar(max))

insert into @table values (1,'["a","b"]','["1","2"]')

select id,vals1.value as V1,vals2.value as V2
from @table t
cross apply openjson(t.json1) vals1
cross apply openjson(t.json2) vals2

将返回:

id  V1  V2
1 a 1
1 a 2
1 b 1
1 b 2

关于json - "expand"/在 MSSQL 上通过 JSON 值加入 SQL 选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48661909/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com