Sqlserver2016新语法⽬前还没使⽤到很多,以后或慢慢新增
1. 把查出来的表数据转换成json包
select * from [dbo].[FinancialCreditCarApplyHeader]
for json auto
2。
with  cr as
(server 2016
select CountryRegionCode from person.CountryRegion where Name like 'C%'
)
select * from person.StateProvince where CountryRegionCode in (select * from cr)
这相当于⼀个语句块的编写适合⽤于函数中返回表结构,这个⽤法好⽐试图,多表连接

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。