gpt4 book ai didi

sql-server - SQL 服务器 : Export Query RESULT as JSON Object

转载 作者:行者123 更新时间:2023-12-04 02:16:36 25 4
gpt4 key购买 nike

我正在使用 Azure sql server 并尝试以下列格式导出查询结果。

要求的查询结果:

{ "results": [{...},{...}], "response": 0 }

来自这个例子:https://msdn.microsoft.com/en-us/library/dn921894.aspx

我正在使用此 sql,但我不确定如何将另一个响应属性作为同级添加到根属性:“results”。

当前查询:

SELECT name, surname
FROM emp
FOR JSON AUTO, ROOT('results')

查询输出:

{ "results": [ { "name": "John", "surname": "Doe" }, { "name": "Jane", "surname": "Doe" } ] }

最佳答案

使用 FOR JSON PATH 而不是 FOR JSON AUTO。查看Format Query Results as JSON with FOR JSON (SQL Server)几个示例的页面,包括点分隔的列名和来自 SELECTS 的查询

关于sql-server - SQL 服务器 : Export Query RESULT as JSON Object,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33378245/

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