SQL NOT IN constraint and NULL values - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T12:16:54Zhttp://stackoverflow.com/feeds/question/129077http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/129077/sql-not-in-constraint-and-null-values5SQL NOT IN constraint and NULL valuesJamie Ide2008-09-24T18:51:32Z2009-06-23T10:02:13Z
<p>This issue came up when I got different records counts for what I thought were identical queries one using a not in where constraint and the other a left join. The table in the not in constraint had one null value (bad data) which caused that query to return a count of 0 records. I sort of understand why but I could use some help fully grasping the concept.</p>
<p>To state it simply, why does query A return a result but B doesn't?</p>
<pre><code>A: select 'true' where 3 in (1, 2, 3, null)
B: select 'true' where 3 not in (1, 2, null)
</code></pre>
<p>This was on SQL Server 2005. I also found that calling set ansi_nulls off causes B to return a result.</p>
http://stackoverflow.com/questions/129077/sql-not-in-constraint-and-null-values/129089#1290894Answer by Sunny for SQL NOT IN constraint and NULL valuesSunny2008-09-24T18:53:18Z2008-09-24T19:01:28Z<p>Compare to null is undefined, unless you use IS NULL.</p>
<p>So, when comparing 3 to NULL (query A), it returns undefined.</p>
<p>I.e. SELECT 'true' where 3 in (1,2,null)
and
SELECT 'true' where 3 not in (1,2,null)</p>
<p>will produce the same result, as NOT (UNDEFINED) is still undefined, but not TRUE</p>
http://stackoverflow.com/questions/129077/sql-not-in-constraint-and-null-values/129127#1291275Answer by Dave Costa for SQL NOT IN constraint and NULL valuesDave Costa2008-09-24T18:58:15Z2008-09-24T18:58:15Z<p>In A, 3 is tested for equality against each member of the set, yielding (FALSE, FALSE, TRUE, UNKNOWN). Since one of the elements is TRUE, the condition is TRUE. (It's also possible that some short-circuiting takes place here, so it actually stops as soon as it hits the first TRUE and never evaluates 3=NULL.)</p>
<p>In B, I think it is evaluating the condition as NOT (3 in (1,2,null)). Testing 3 for equality against the set yields (FALSE, FALSE, UNKNOWN), which is aggregated to UNKNOWN. NOT ( UNKNOWN ) yields UNKNOWN. So overall the truth of the condition is unknown, which at the end is essentially treated as FALSE.</p>
http://stackoverflow.com/questions/129077/sql-not-in-constraint-and-null-values/129151#1291510Answer by YonahW for SQL NOT IN constraint and NULL valuesYonahW2008-09-24T19:01:34Z2008-09-24T19:01:34Z<p>since null is an unknown a not in query containing a null in the list of possible values will always return 0 records since there is no way to be sure that the null value is not the value being tested.</p>
http://stackoverflow.com/questions/129077/sql-not-in-constraint-and-null-values/129152#12915210Answer by Brannon for SQL NOT IN constraint and NULL valuesBrannon2008-09-24T19:01:50Z2008-09-25T17:06:20Z<p>Query A is the same as:</p>
<pre><code>select 'true' where 3 = 1 or 3 = 2 or 3 = 3 or 3 = null
</code></pre>
<p>Since <code>3 = 3</code> is true, you get a result.</p>
<p>Query B is the same as:</p>
<pre><code>select 'true' where 3 <> 1 and 3 <> 2 and 3 <> null
</code></pre>
<p>When <code>ansi_nulls</code> is on, <code>3 <> null</code> is UNKNOWN, so the predicate evaluates to UNKNOWN, and you don't get any rows.</p>
<p>When <code>ansi_nulls</code> is off, <code>3 <> null</code> is true, so the predicate evaluates to true, and you get a row.</p>
http://stackoverflow.com/questions/129077/sql-not-in-constraint-and-null-values/129196#1291962Answer by Cruachan for SQL NOT IN constraint and NULL valuesCruachan2008-09-24T19:08:44Z2008-09-24T19:08:44Z<p>Null signifies and absence of data, that is it is unknown, not a data value of nothing. It's very easy for people from a programming background to confuse this because in C type languages when using pointers null is indeed nothing. </p>
<p>Hence in the first case 3 is indeed in the set of (1,2,3,null) so true is returned</p>
<p>In the second however you can reduce it to </p>
<p><em>select 'true' where 3 not in (null)</em></p>
<p>So nothing is returned because the parser knows nothing about the set to which you are comparing it - it's not an empty set but an unknown set. Using (1, 2, null) doesn't help because the (1,2) set is obviously false, but then you're and'ing that against unknown, which is unknown.</p>
http://stackoverflow.com/questions/129077/sql-not-in-constraint-and-null-values/129407#129407-1Answer by DiGi for SQL NOT IN constraint and NULL valuesDiGi2008-09-24T19:42:29Z2008-09-24T19:42:29Z<p>Any compare against NULL is always FALSE. You can use IS NULL or IS NOT NULL only.</p>
http://stackoverflow.com/questions/129077/sql-not-in-constraint-and-null-values/130409#1304090Answer by Mladen for SQL NOT IN constraint and NULL valuesMladen2008-09-24T22:47:33Z2008-09-24T22:47:33Z<p>also this might be of use to know the logical difference between join, exists and in
<a href="http://weblogs.sqlteam.com/mladenp/archive/2007/05/18/60210.aspx" rel="nofollow">http://weblogs.sqlteam.com/mladenp/archive/2007/05/18/60210.aspx</a></p>
http://stackoverflow.com/questions/129077/sql-not-in-constraint-and-null-values/132402#1324023Answer by kristof for SQL NOT IN constraint and NULL valueskristof2008-09-25T09:54:41Z2008-09-25T09:54:41Z<p>Whenever you use NULL you are really dealing with a Three-Valued logic.</p>
<p>Your first query returns results as the WHERE clause evaluates to:</p>
<pre><code> 3 = 1 or 3 = 2 or 3 = 3 or 3 = null
which is:
FALSE or FALSE or TRUE or UNKNOWN
which evaluates to
TRUE
</code></pre>
<p>The second one:</p>
<pre><code> 3 <> 1 and 3 <> 2 and 3 <> null
which evaluates to:
TRUE and TRUE and UNKNOWN
which evaluates to:
UNKNOWN
</code></pre>
<p>The UNKNOWN is not the same as FALSE
you can easily test it by calling:</p>
<pre><code>select 'true' where 3 <> null
select 'true' where not (3 <> null)
</code></pre>
<p>Both queries will give you no results</p>
<p>If the UNKNOWN was the same as FALSE then assuming that the first query would give you FALSE the second would have to evaluate to TRUE as it would have been the same as NOT(FALSE).<br />
That is not the case.</p>
<p>There is a very good <a href="http://www.sqlservercentral.com/articles/Advanced+Querying/fourrulesfornulls/1915/" rel="nofollow">article on this subject on SqlServerCentral</a> </p>
<p>The whole issue of NULLs and Three-Valued Logic can be a bit confusing at first but it is essential to understand in order to write correct queries in TSQL </p>
<p>Some other read I would recommend is <a href="http://www.sqlservercentral.com/articles/Advanced+Querying/gotchasqlaggregatefunctionsandnull/1947/" rel="nofollow">SQL Aggregate Functions and NULL</a></p>
<p>Hope that helps, </p>
http://stackoverflow.com/questions/129077/sql-not-in-constraint-and-null-values/487830#4878300Answer by Boy for SQL NOT IN constraint and NULL valuesBoy2009-01-28T14:32:52Z2009-01-28T14:32:52Z<p>I am facing same issue. There are records for this query. So it should return at least one row. But it does not. Can anyone tell me how to run this query.</p>
<p>SQL> select party_code from abc where party_code not in (select party_code from xyz);</p>
<p>no rows selected</p>
<p>SQL></p>
http://stackoverflow.com/questions/129077/sql-not-in-constraint-and-null-values/1031653#10316530Answer by Rostand Abear for SQL NOT IN constraint and NULL valuesRostand Abear2009-06-23T10:02:13Z2009-06-23T10:02:13Z<p>this is for Boy:</p>
<p>select party_code from abc as a
where party_code not in (
select party_code from xyz where party_code = a.party_code
);</p>
<p>this works regardless of ansi settings</p>