91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SQLServer中有哪些比較運算符

發布時間:2021-08-06 11:08:55 來源:億速云 閱讀:115 作者:Leah 欄目:數據庫

SQLServer中有哪些比較運算符,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

他們作用于比較運算符和子查詢之間,作用類似Exists、not exists、in、not in以及其他邏輯意義,這些語法同樣被SQLServer2000支持但是很少看到有人用它們。復制代碼 代碼如下: 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 ) --無數據 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數據,那么所有All相關的比較運算將不會返回任何結果,原因就不用多解釋了。而因為t1和t2表的null的存在他們和not exists之類的比較符會有一些區別。 比如下面兩句 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同時查出來,第二句卻是忽略了t2的null同時會因為t1中的null而無法查詢到數據。

看完上述內容,你們掌握SQLServer中有哪些比較運算符的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

眉山市| 沾化县| 南溪县| 巫溪县| 延安市| 时尚| 福泉市| 固原市| 图木舒克市| 山东省| 乐安县| 都兰县| 浦北县| 库尔勒市| 郴州市| 吉木萨尔县| 铜陵市| 聂拉木县| 丽水市| 平江县| 望谟县| 察哈| 元阳县| 长阳| 清水县| 华容县| 富顺县| 平武县| 遵义市| 宣城市| 陈巴尔虎旗| 万宁市| 竹溪县| 福建省| 梁河县| 汉源县| 海安县| 德令哈市| 义马市| 泾源县| 泰宁县|