Click here to Skip to main content
15,881,424 members
Articles / Database Development / SQL Server

EXCEPT vs NOT IN in SQL Server

Rate me:
Please Sign up or sign in to vote.
4.39/5 (12 votes)
10 Jul 2013CPOL 150.1K   14   3
Except vs Not In in SQL Server

Introduction

"EXCEPT" operator was introduced in SQL SERVER 2005. This operator used to achieve Distinct and Not In queries. EXCEPT operator returns all distinct rows from left hand side table which does not exist in right hand side table.

On the other hand, "NOT IN" will return all rows from left hand side table which are not present in right hand side table but it will not remove duplicate rows from the result.

Example of EXCEPT vs NOT IN in SQL SERVER:

SQL
create table #tblsample (ProductId tinyint)
create table #tblsample2 (ProductId tinyint)

--insert values to tbl 1
insert into #tblsample values (1)
insert into #tblsample values (2)
insert into #tblsample values (3)
insert into #tblsample values (4)

--insert values to tbl 2
insert into #tblsample2 values (1)

--SELECT
select * from #tblsample
select * from #tblsample2

--USE EXCEPT
select * from #tblsample
except
select * from #tblsample2

--USE NOT IN
select * from #tblsample
where productid NOT IN(
select * from #tblsample2)

Image 1

SQL
-- INSERT DUBLICATE VALUE
insert into #tblsample values (1)
insert into #tblsample values (2)

--SELECT
select * from #tblsample
--USE EXCEPT
PRINT 'EXCEPT RETURNS DISTINCT VALUES'
select * from #tblsample except select * from #tblsample2
--USE NOT IN
PRINT 'NOT IN RETURNS DUPLICATE VALUES IF ANY'
select * from #tblsample where productid NOT IN(select * from #tblsample2)

--USE DISTINCT + NOT IN = EXCEPT

select * from #tblsample
except
select productid from #tblsample2

Image 2

SQL
--DROP TABLE
DROP TABLE #tblsample
DROP TABLE #tblsample2
This article was originally posted at http://dotnettips4all.blogspot.com/feeds/posts/default

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
India India
This is Vinoth from Coimbatore. Vinoth have been working as software developer since Jan 2011. Find Vino's other Interesting article in http://dotnettips4all.blogspot.in/

Comments and Discussions

 
QuestionNULL value handling Pin
SMD11-Mar-16 2:10
SMD11-Mar-16 2:10 
QuestionClear and very helpful Pin
David Pierson9-Sep-15 14:05
David Pierson9-Sep-15 14:05 
Well structured and very easy to follow article.

Good examples too.

Appreciated.

Thank you!
Generalvery helpful article Pin
coolnavjot313-Jun-14 3:24
coolnavjot313-Jun-14 3:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.