主頁(yè) > 知識(shí)庫(kù) > 被遺忘的SQLServer比較運(yùn)算符謂詞

被遺忘的SQLServer比較運(yùn)算符謂詞

熱門(mén)標(biāo)簽:菏澤語(yǔ)音電銷(xiāo)機(jī)器人加盟公司 知名電銷(xiāo)機(jī)器人價(jià)格 外呼系統(tǒng)改進(jìn) 長(zhǎng)沙智能外呼系統(tǒng) 地圖標(biāo)注牌 湖南電腦外呼系統(tǒng)平臺(tái) 電銷(xiāo)機(jī)器人公司 需要哪些牌照 廣東防封卡外呼系統(tǒng)原理是什么 分享百度地圖標(biāo)注多個(gè)位置
官方的參考文檔
http://technet.microsoft.com/zh-cn/library/ms187074%28SQL.90%29.aspx
他們作用于比較運(yùn)算符和子查詢(xún)之間,作用類(lèi)似Exists、not exists、in、not in以及其他邏輯意義,這些語(yǔ)法同樣被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 ) --無(wú)數(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 nsome(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)算將不會(huì)返回任何結(jié)果,原因就不用多解釋了。而因?yàn)閠1和t2表的null的存在他們和not exists之類(lèi)的比較符會(huì)有一些區(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)
他們邏輯上意義很像但是對(duì)于null的處理卻是恰恰相反,第一句會(huì)忽略子查詢(xún)的null而把t2的null同時(shí)查出來(lái),第二句卻是忽略了t2的null同時(shí)會(huì)因?yàn)閠1中的null而無(wú)法查詢(xún)到數(shù)據(jù)。

標(biāo)簽:福建 天水 珠海 泉州 商洛 呼和浩特 西寧 美容院

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《被遺忘的SQLServer比較運(yùn)算符謂詞》,本文關(guān)鍵詞  被,遺忘,的,SQLServer,比較,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《被遺忘的SQLServer比較運(yùn)算符謂詞》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于被遺忘的SQLServer比較運(yùn)算符謂詞的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章