Could someone please explain the following behavior in SQL?
SELECT * FROM MyTable WHERE MyColumn != NULL (0 Results)
SELECT * FROM MyTable WHERE MyColumn <> NULL (0 Results)
SELECT * FROM MyTable WHERE MyColumn IS NOT NULL (568 Results)
|
Could someone please explain the following behavior in SQL?
|
||||
|
|
|
Which is why you can only use And it's not specific to SQL Server. All standards-compliant SQL dialects work the same way. |
|||||||||||||||
|
|
NULL has no value, and so cannot be compared using the scalar value operators. In other words, no value can ever be equal to (or not equal to) NULL because NULL has no value. Hence, SQL has special IS NULL and IS NOT NULL predicates for dealing with NULL. |
|||||||||
|
|
Note that this behavior is the default (ANSI) behavior. If you:
http://msdn.microsoft.com/en-us/library/ms188048.aspx You'll get different results.
|
|||||
|
|
The only test for NULL is IS NULL or IS NOT NULL. Testing for equality is nonsensical because by definition one doesn't know what the value is. Here is a wikipedia article to read: |
|||
|
|
|
NULL Cannot be compared to any value using the comparison operators. NULL = NULL is false. Null is not a value. The IS operator is specially designed to handle NULL comparisons. |
|||||||||||
|
|
In SQL, anything you evaluate / compute with This is why To provide a check for Moreover, you can use the Hope this helps. |
|||||||||
|