在SQL中直接把查询结果转换为JSON数据

下面这篇中,已经有准备一些数据:

《ms sql server对象类型type》

为前端服务,直接在sql把查询结果转换为json格式数据:

 

实现这样的功能,可以使用sql的for json path:

 

select [type],[desc] from #type
for json path
go

 

给查询语句加上条件和for json path加上root标记。

 

select [type],[desc] from #type
where [type] like '%f%'
for json path,root('db type') 
go

 

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐