SQL中IN,NOT IN,EXISTS,NOT EXISTS的用法和差別
SQL中IN,NOT IN,EXISTS,NOT EXISTS的用法和差別:
IN:確定給定的值是否與子查詢或列表中的值相匹配。
IN 關鍵字使您得以選擇與列表中的任意一個值匹配的行。
當要獲得居住在 California、Indiana 或 Maryland 州的所有作者的姓名和州的列表時,就需要下列查詢:
SELECT ProductID, ProductName FROM Northwind.dbo.Products WHERE CategoryID = 1 OR CategoryID = 4 OR CategoryID = 5
然而,如果使用 IN,少鍵入一些字元也可以得到同樣的結果:
SELECT ProductID, ProductName FROM Northwind.dbo.Products WHERE CategoryID IN (1, 4, 5)IN 關鍵字之後的專案必須用逗號隔開,並且括在括號中。
下列查詢在 titleauthor 表中查詢在任一種書中得到的版稅少於 50% 的所有作者的 au_id,然後從 authors 表中選擇 au_id 與titleauthor 查詢結果匹配的所有作者的姓名:
SELECT au_lname, au_fname FROM authors WHERE au_id IN (SELECT au_id FROM titleauthor WHERE royaltyper < 50)
結果顯示有一些作者屬於少於 50% 的一類。
NOT IN:透過 NOT IN 關鍵字引入的子查詢也返回一列零值或更多值。
以下查詢查詢沒有出版過商業書籍的出版商的名稱。
SELECT pub_name FROM publishers WHERE pub_id NOT IN (SELECT pub_id FROM titles WHERE type = 'business')
差集包含只屬於兩個集合中的第一個集合的元素。
EXISTS:指定一個子查詢,檢測行的存在。
本示例所示查詢查詢由位於以字母 B 開頭的城市中的任一出版商出版的書名:
SELECT DISTINCT pub_name FROM publishers WHERE EXISTS (SELECT * FROM titles WHERE pub_id = publishers.pub_id AND type =
'business')
SELECT distinct pub_name FROM publishers WHERE pub_id IN (SELECT pub_id FROM titles WHERE type = 'business')
兩者的區別:
EXISTS:後面可以是整句的查詢語句如:SELECT * FROM titles
IN:後面只能是對單列:SELECT pub_id FROM titles
NOT EXISTS:
例如,要查詢不出版商業書籍的出版商的名稱:
SELECT pub_name FROM publishers WHERE NOT EXISTS (SELECT * FROM titles WHERE pub_id = publishers.pub_id AND type =
'business')
下面的查詢查詢已經不銷售的書的名稱:
SELECT title FROM titles WHERE NOT EXISTS (SELECT title_id FROM sales WHERE title_id = titles.title_id)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/14663377/viewspace-1058293/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oralce 使用SQL中的exists 和not exists 用法詳解SQL
- exists()、not exists() 、in()、not in()用法以及效率差異
- Oracle中exists和in的效能差異Oracle
- SQL語句中exists和in的區別SQL
- [精選] SQL中的IN與NOT IN、EXISTS與NOT EXISTS的區別及效能分析SQL
- not in 和 not exists 比較和用法
- sql:delete if exists還是drop if exists?SQLdelete
- 對線面試官:SQL中的IN與NOT IN、EXISTS與NOT EXISTS的區別及效能分析面試SQL
- PTSQLServer中exists和except用法介紹wkaSQLServer
- sql中in和exists的原理及使用場景。SQL
- EXISTS、IN、NOT EXISTS、NOT IN(zt)
- In和exists使用及效能分析(二):exists的使用
- In和exists使用及效能分析(三):in和exists的效能分析
- [20180808]exists and not exists.txt
- mysql 關於exists 和in分析MySql
- in、exists與索引索引
- In和exists使用及效能分析(一):in的使用
- elasticsearch之exists查詢Elasticsearch
- C# File.Exists 判斷系統檔案,警惕32位和64位的差異C#
- Laravel的unique和exists驗證規則的優化Laravel優化
- fs.exists 與 fs.access的區別是什麼
- [20180928]exists與cardinality.txt
- MYSQL 中 exists 語句執行效率變低MySql
- 關於hibernate的 No row with the given identifier existsIDE
- 【MySQL】NOT EXISTS優化的一個案例MySql優化
- 【原始碼】Redis exists命令bug分析原始碼Redis
- beego報錯 table name: `xxx` not existsGo
- exists與in子查詢優化優化
- 蘊含式(包含EXISTS語句的分析)
- in、exists操作與null的一點總結Null
- List中對比Contains, Exists, Any之間的優缺點AI
- 查詢a表中b表沒有的資料,使用not exists
- mybatis exists 中使用代替in關鍵字MyBatis
- Python BUG FileExistsError: [Errno 17] File exists: xxxPythonError
- Elasticsearch Java High Level REST Client(Exists API)ElasticsearchJavaRESTclientAPI
- sql中union和union all的用法SQL
- 深入理解PHP之isset和array_key_exists對比PHP
- PostgreSQL DBA(107) - pgAdmin(Don't do this:NOT IN vs NOT EXISTS)SQL
- Swap file "/etc/sysconfig/.iptables.swp" already exists!