gpt4 book ai didi

sql-server - 将一列转换为 json

转载 作者:行者123 更新时间:2023-12-05 01:41:22 24 4
gpt4 key购买 nike

我尝试使用 Azure SQLServer 仅将一列转换为 json 格式。数据位于 nvarchar 字段中。使用 For Json Auto 将转换所有字段和所有行。我需要的只是转换一列。

通过转换为 json,我的意思是可以点击以在 SSMS 中的一个新窗口中查看它的数据。

假设表 (Logs) 有 2 列:LogIdLogDataLogDatanvarchar(max) 并且包含 json 数据。

我需要的是查询表并有一个可点击的 logData 列。

最佳答案

您可以像下面那样尝试只获取一列作为 JSON

select o.*,
(select YourColumnForJson
from YourTable i
where o.Identifer=i.Identifer for json auto) as JsonColumn
from YourTable o

关于sql-server - 将一列转换为 json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54532157/

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