sql 拼接json

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 拼接json相关的知识,希望对你有一定的参考价值。

select ‘[‘ + STUFF((
select top 10
‘,{"carnumber":"‘ + cast(carnumber as varchar) + ‘"‘
+ ‘,"goodsno":"‘ + cast(goodsno as varchar)+ ‘"‘
+ ‘,"goods":"‘ + cast(Goods as varchar) + ‘"‘
+‘}‘
from OtherWeight t1
for xml path(‘‘),type
).value(‘.‘, ‘varchar(max)‘), 1, 1, ‘‘) + ‘]‘

 

 


select ‘[‘ + STUFF((
select top 10
‘,{"carnumber":"‘ + cast(carnumber as varchar) + ‘"‘
+ ‘,"goodsno":"‘ + cast(goodsno as varchar)+ ‘"‘
+ ‘,"goods":"‘ + cast(Goods as varchar) + ‘"‘
+‘}‘
from OtherWeight t1
for xml path(‘‘)
), 1, 1, ‘‘) + ‘]‘

 

以上是关于sql 拼接json的主要内容,如果未能解决你的问题,请参考以下文章

springboot2.x+MyBatis-Plus+mysql5.7 动态拼接sql语句 分页查询 自定义sql 查询条件 分组 排序

springboot2.x+MyBatis-Plus+mysql5.7 动态拼接sql语句 分页查询 自定义sql 查询条件 分组 排序

sql查询字符串拼接

sql查询中字符串拼接的问题

json拼接含字符串变量的问题

sql查询结果拼接