<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
SQL Server 2005開始支援XML資料型別,提供原生的XML資料型別、XML索引及各種管理或輸出XML格式的函數。
隨著JSON的流行,SQL Server 2016開始支援JSON資料型別,不僅可以直接輸出JSON格式的結果集,還能讀取JSON格式的資料。
下面是我們熟悉的SELECT及輸出格式,後面對JSON的演示基於此SQL:
要將SELECT語句的結果以JSON輸出,最簡單的方法是在後面加上FOR JSON AUTO:
若要為FOR JSON加上Root Key,可以用ROOT選項來自定義ROOT 節點的名稱:
若要自定義輸出JSON格式的結構時,必須使用JSONPATH。
為NULL的資料在輸出JSON時,會被忽略,若想要讓NULL的欄位也顯示出來,可以加上選項INCLUDE_NULL_VALUES,該選項也適用於AUTO。
比如下面的SQL,增加了一個“SN”節點,把欄位SERNUM和CLIMAT放在裡面:
演示範例:
select TOP (2) id, Plies, Createtime from [dbo].[B3PliesData] ORDER BY ID ; --1178 3 2020-07-21 14:33:18.480 --1179 3 2020-07-21 14:36:27.457 select TOP (2) id, Plies as [myObject.Plies], Createtime as [myObject.Createtime] from [dbo].[B3PliesData] ORDER BY ID for json auto; --[{"id":1178,"myObject.Plies":3,"myObject.Createtime":"2020-07-21T14:33:18.480"},{"id":1179,"myObject.Plies":3,"myObject.Createtime":"2020-07-21T14:36:27.457"}] select TOP (2) id, Plies, Createtime from [dbo].[B3PliesData] ORDER BY ID for json auto ,root('myRoot') ; --{"myRoot":[{"id":1178,"Plies":3,"Createtime":"2020-07-21T14:33:18.480"},{"id":1179,"Plies":3,"Createtime":"2020-07-21T14:36:27.457"}]} select TOP (2) id, Plies as [myObject.Plies], Createtime as [myObject.Createtime] from [dbo].[B3PliesData] ORDER BY ID for json path; --[{"id":1178,"myObject":{"Plies":3,"Createtime":"2020-07-21T14:33:18.480"}},{"id":1179,"myObject":{"Plies":3,"Createtime":"2020-07-21T14:36:27.457"}}] select TOP (2) id, Plies, Createtime,null as mynull from [dbo].[B3PliesData] ORDER BY ID for json path,root('myRoot'); --{"myRoot":[{"id":1178,"Plies":3,"Createtime":"2020-07-21T14:33:18.480"},{"id":1179,"Plies":3,"Createtime":"2020-07-21T14:36:27.457"}]} select TOP (2) id, Plies, Createtime,null as mynull from [dbo].[B3PliesData] ORDER BY ID for json path,root('myRoot'),include_null_values; --{"myRoot":[{"id":1178,"Plies":3,"Createtime":"2020-07-21T14:33:18.480","mynull":null},{"id":1179,"Plies":3,"Createtime":"2020-07-21T14:36:27.457","mynull":null}]}
範例演示:
-------------1、------------- declare @json as varchar(8000) set @json='[ {"id":1178,"myObject.Plies":3,"myObject.Createtime":"2020-07-21T14:33:18.480"}, {"id":1179,"myObject.Plies":3,"myObject.Createtime":"2020-07-21T14:36:27.457"}]' select * from openjson(@json); --key value type --0 {"id":1178,"myObject.Plies":3,"myObject.Createtime":"2020-07-21T14:33:18.480"} 5 --1 {"id":1179,"myObject.Plies":3,"myObject.Createtime":"2020-07-21T14:36:27.457"} 5 -------------2、------------- declare @json1 as varchar(8000) set @json1='[ {"id":1178,"myObject.Plies":3,"myObject.Createtime":"2020-07-21T14:33:18.480"}, {"id":1179,"myObject.Plies":3,"myObject.Createtime":"2020-07-21T14:36:27.457"}] ' select * from openjson(@json1) with( id varchar(10) '$.id', Plies int '$."myObject.Plies"', Createtime datetime '$."myObject.Createtime"' ); --id Plies Createtime --1178 3 2020-07-21 14:33:18.480 --1179 3 2020-07-21 14:36:27.457 -------------3、------------- declare @json2 as varchar(8000) set @json2='{"myRoot":[ {"id":1178,"myObject":{"Plies":3,"Createtime":"2020-07-21T14:33:18.480"}}, {"id":1179,"myObject":{"Plies":3,"Createtime":"2020-07-21T14:36:27.457"}} ]}' select * from openjson(@json2,'$.myRoot') with( id varchar(10) , Plies int '$.myObject.Plies', Createtime datetime '$.myObject.Createtime' ); --id Plies Createtime --1178 3 2020-07-21 14:33:18.480 --1179 3 2020-07-21 14:36:27.457
declare @param nvarchar(max); set @param = N'{ "info":{ "type":1, "address":{ "town":"Bristol", "county":"Avon", "country":"England" }, "tags":["Sport", "Water polo"] }, "type":"Basic" }';
print iif(isjson(@param) > 0, 'OK', 'NO');
返回:OK
print json_value(@param, '$.info.address.town'); print json_value(@param, '$.info.tags[1]');
返回:Bristol,Water polo
print json_query(@param, '$.info'); { "type":1, "address":{ "town":"Bristol", "county":"Avon", "country":"England" }, "tags":["Sport", "Water polo"] }
print json_modify(@param, '$.info.address.town', 'London');
返回:
{ "info":{ "type":1, "address":{ "town":"London", "county":"Avon", "country":"England" }, "tags":["Sport", "Water polo"] }, "type":"Basic" }
範例演示:
declare @param nvarchar(max); set @param=N'{ "info":{ "type":1, "address":{ "town":"Bristol", "county":"Avon", "country":"England" }, "tags":["Sport", "Water polo"] }, "type":"Basic" }'; print iif(isjson(@param)>0, 'OK', 'NO'); print json_query(@param); print json_value(@param, '$.info.address.town'); print json_value(@param, '$.info.tags[1]'); print json_query(@param, '$.info'); print json_query('["2020-1-8","2020-1-9"]'); print json_modify(@param, '$.info.address.town', 'London');
SQL2016 中的新增的內建JSON進行了簡單介紹,主要有如下要點:
到此這篇關於SQL Server使用JSON函數的文章就介紹到這了。希望對大家的學習有所幫助,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45