T-SQL Tutorials - TSQLTutorials.com

EXCEPT - Difference Between Sets


Introduction

The EXCEPT keyword in TSQL is used to find what is different between two datasets. The two datasets must have the same number of columns in them and use the same datatypes. The datasets must also have the columns in the same comparative order. The EXCEPT T-SQL Expression places the EXCEPT keyword between two datasets. By using the EXCEPT keyword between two datasets, TSQL will return a new dataset that just contains what is in the first dataset and not in the second dataset. The EXCEPT keyword is often used in this fashion:

  • SELECT col1,col2,coln... FROM table1 '[DataSet #1]
  • EXCEPT
  • SELECT col1,col2,coln... FROM table2 '[DataSet #2]

image of EXCEPT clause between two datasets
The above image represents the use of EXCEPT between two datasets. The top circle (red) represents the first dataset, and the bottom circle (blue) represents the second dataset. The overlapping area (dark blue) is the section that is common to both datasets. By using the EXCEPT keyword between two datasets (red & blue circles), TSQL will return a new dataset that just contains the records that are unique to the first dataset (red) and not contained in the second dataset (blue), or the overlapping area (dark blue).


Microsoft SQL Server 2005 - Standard Edition 5 CAL's

Price: $1785
Buy It Now
SQL Server 2005 Enterprise Edition 1 CAL
Current Price: $4599.99
Current Bids: 0
228-00683 MS SQL Server 2000 Standard 5 CAL

Price: $375
Buy It Now
Microsoft SQL Server 2008 R2 Enterprise w/25 Device Cal
Price: $13049
Buy It Now
Microsoft SQL Server 2000 Standard 10 CAL 228-00684 NEW

Price: $939
Buy It Now
Microsoft SQL Server 2000 Standard Edition -Five CAL -

Price: $399
Buy It Now







Copyright 2010 - TSQLTutorials.com