I am surprised to see that IS NULL and =NULL are yielding different results in a select query. What is difference between them? When to use what. I would be glad if you can explain me in detail.
|
|
Reasons are described here: http://stackoverflow.com/questions/1843451/why-does-null-null-evaluate-to-false-in-sql-server |
|||||||
|
|
To add to existing answers, it depends whether you have ANSI_NULLS on or not, when using "= NULL".
|
|||
|
|
|
because of the three-valued-logic of SQL: http://en.wikipedia.org/wiki/Null_%28SQL%29#Three-valued_logic_.283VL.29 |
||||
|
|
|
Nothing is equal to NULL, not even NULL itself. (NULL = NULL is NULL). =NULL is rarly if ever what you want. Use IS NULL to check against NULL. |
||||
|
|
|
In MSSQL |
|||
|
|
Check it, http://www.sqlservercentral.com/articles/T-SQL/understandingthedifferencebetweenisnull/871/ |
|||
|
|
|
You should take a look at this article |
|||
|
|