SQL Server 中關於EXCEPT和INTERSECT的使用方法

來源:互聯網
上載者:User

標籤:blog   http   使用   strong   io   資料   art   代碼   

熟練使用SQL Server中的各種使用方法會給查詢帶來非常多方便。今天就介紹一下EXCEPT和INTERSECT。注意此文法僅在SQL Server 2005及以上版本號碼支援。

EXCEPT是指在第一個集合中存在,可是不存在於第二個集合中的資料。

INTERSECT是指在兩個集合中都存在的資料。

測試例如以下:

create table t1(id int,mark char(2))gocreate table t2(id int,mark char(2))goinsert into t1select 1,‘t1‘ union allselect 2,‘t2‘ union allselect 3,‘t3‘ union allselect 4,‘t4‘goinsert into t2select 2,‘t2‘ union allselect 3,‘m3‘ union allselect 5,‘m5‘ union allselect 6,‘t6‘goselect * from t1EXCEPTselect * from t2goselect * from t1INTERSECTselect * from t2go--EXCEPT結果集為--1t1--3t3--4t4--INTERSECT結果集為--2t2

 

 

EXCEPT和INTERSECT的優先順序:

為了測試它們之間的優先順序,執行以下的測試代碼:

create table t3(int id,mark char(2))goinsert into t3select 3,‘t3‘ union allselect 3,‘r3‘ union allselect 5,‘m5‘ union allselect 5,‘r5‘ union allselect 7,‘b7‘ union allselect 8,‘b8‘goselect * from t1EXCEPTselect * from t2INTERSECTselect * from t3--執行結果--1t1--2t2--3t3--4t4

 

為什麼會出現如上結果呢,請看以下的運行計劃:

 

原來t2和t3先進行的INTERSECT運算,得出5 m5結果集,再和t1進行EXCEPT運算。

 

如需轉載,請註明本文原創自CSDN TJVictor專欄:http://blog.csdn.net/tjvictor

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.