您好,登錄后才能下訂單哦!
這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)SQLServer中有哪些比較運(yùn)算符修飾詞,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
SQLServer中有三個關(guān)鍵字可以修改比較運(yùn)算符:All、Any和Some,其中Some和Any等價(jià)。官方的參考文檔http://technet.microsoft.com/zh-cn/library/ms187074%28SQL.90%29.aspx 他們作用于比較運(yùn)算符和子查詢之間,作用類似Exists、not exists、in、not in以及其他邏輯意義,這些語法同樣被SQLServer2000支持但是很少看到有人用它們。復(fù)制代碼 代碼如下: set nocount on use tempdb go if (object_id ('t1' ) is not null ) drop table t1 create table t1 (n int )insert into t1 select 2 union select 3 if (object_id ('t2' ) is not null ) drop table t2 create table t2 (n int )insert into t2 select 1 union select 2 union select 3 union select 4 select * from t2 where n> all (select n from t1 ) --4 select * from t2 where n> any (select n from t1 ) --3,4 --select * from t2 where n>some(select n from t1) --3,4 select * from t2 where n= all (select n from t1 ) --無數(shù)據(jù) select * from t2 where n= any (select n from t1 ) --2,3 --select * from t2 where n=some(select n from t1) --2,3 select * from t2 where n< all (select n from t1 ) --1 select * from t2 where n< any (select n from t1 ) --1,2 --select * from t2 where n<some(select n from t1) --1,2 select * from t2 where n<> all (select n from t1 ) --1,4 select * from t2 where n<> any (select n from t1 ) --1,2,3,4 --select * from t2 where n<>some(select n from t1)--1,2,3,4 set nocount off
注意,如果t1中包含null數(shù)據(jù),那么所有All相關(guān)的比較運(yùn)算將不會返回任何結(jié)果,原因就不用多解釋了。而因?yàn)閠1和t2表的null的存在他們和not exists之類的比較符會有一些區(qū)別。
比如下面兩句select * from t2 a where not exists(select 1 from t1 where n>=a.n)select * from t2 where n >all(select n from t1)他們邏輯上意義很像但是對于null的處理卻是恰恰相反,第一句會忽略子查詢的null而把t2的null同時(shí)查出來,第二句卻是忽略了t2的null同時(shí)會因?yàn)閠1中的null而無法查詢到數(shù)據(jù)。
上述就是小編為大家分享的SQLServer中有哪些比較運(yùn)算符修飾詞了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。