In SQL server if you have nullParam=NULL in a where clause, it always evaluates to false. This is counterintuitive and has caused me many errors. I do understand the IS NULL and IS NOT NULL keywords are the correct way to do it. But why does SQL server behave this way?
|
|
|||||||||||||||||||||
|
|
Think of the null as "unknown" in that case (or "does not exist"). In either of those cases, you can't say that they are equal, because you don't know the value of either of them. So, null=null evaluates to not true (false or null, depending on your system), because you don't know the values to say that they ARE equal. This behavior is defined in the ANSI SQL-92 standard. EDIT: This depends on your ansi_nulls setting. if you have ANSI_NULLS off, this WILL evaluate to true. Run the following code for an example...
|
|||||||||||||||||||||
|
|
Does it actually evaluate to false? That would be really counterintuitive... It should evaluate to NULL. |
|||||||||||||
|
|
Here I will hopefully clarify my position. That
They can be different or they can be equal, you don't know until one open both presents. Who knows? You invited two people that don't know each other and both have done to you the same gift - rare, but not impossible §. So the question: are these two UNKNOWN presents the same (equal, =)? The correct answer is: UNKNOWN (i.e. This example was intended to demonstrate that "..( A correct answer to this question must emphasize this two points:
So I reiterate: SQL does not any good forcing one to interpret the reflexive property of equality, which state that:
.. in a 3VL ( Note also that NULLs are valid " non-values " (as their apologists pretend them to be) which one can assign as attribute values(??) as part of relation variables. So they are acceptable values of every type (domain), not only of the type of logical expressions. And this was my point: I think that this formulation is much more clear and less debatable - sorry for my poor English proficiency. This is only one of the problems of NULLs. Better to avoid them entirely, when possible. § we are concerned about values here, so the fact that the two presents are always two different physical objects are not a valid objection; if you are not convinced I'm sorry, it is not this the place to explain the difference between value and "object" semantics (Relational Algebra has value semantics from the start - see Codd's information principle; I think that some SQL DBMS implementors don't even care about a common semantics). §§ to my knowledge, this is an axiom accepted (in a form or another, but always interpreted in a 2VL) since antiquity and that exactly because is so intuitive. 3VLs (is a family of logics in reality) is a much more recent development (but I'm not sure when was first developed). Side note: if someone will introduce Bottom, Unit and Option Types as attempts to justify SQL NULLs, I will be convinced only after a quite detailed examination that will shows of how SQL implementations with NULLs have a sound type system and will clarify, finally, what NULLs (these "values-not-quite-values") really are. In what follow I will quote some authors. Any error or omission is probably mine and not of the original authors. Joe Celko on SQL NULLs I see Joe Celko often cited on this forum. Apparently he is a much respected author here. So, I said to myself: "what does he wrote about SQL NULLs? How does he explain NULLs numerous problems?". One of my friend has an ebook version of Joe Celko's SQL for smarties: advanced SQL programming, 3rd edition. Let's see. First, the table of contents. The thing that strikes me most is the number of times that NULL is mentioned and in the most varied contexts:
and so on. It rings "nasty special case" to me. I will go into some of these cases with excerpts from this book, trying to limit myself to the essential, for copyright reasons. I think these quotes fall within "fair use" doctrine and they can even stimulate to buy the book - so I hope that no one will complain (otherwise I will need to delete most of it, if not all). Furthermore, I shall refrain from reporting code snippets for the same reason. Sorry about that. Buy the book to read about datailed reasoning. Page numbers between parenthesis in what follow.
Again this "value but not quite a value" nonsense. The rest seems quite sensible to me.
Apropos of SQL, NULLs and infinite:
SQL implementations undecided on what NULL really means in particular contexts:
Joe Celko quoting David McGoveran and C. J. Date:
NULLs as a drug addiction:
My unique objection here is to "use them properly", which interacts badly with specific implementation behaviors.
(separator)
But UNKNOWN is a source of problems in itself, so that C. J. Date, in his book cited below, reccomends in chapter 4.5. Avoiding Nulls in SQL:
Read "ASIDE" on UNKNOWN, also linked below.
(separator)
Objection: NULLs confuses even people that know SQL well, see below.
(separator)
(separator)
(separator)
(separator)
(separator)
(separator)
Discussing GROUP BY:
This means that for GROUP BY clause NULL = NULL does not evaluate to NULL, as in 3VL, but it evaluate to TRUE. SQL standard is confusing:
And so on. I think is enough by Celko. C. J. Date on SQL NULLs C. J. Date is more radical about NULLs: avoid NULLs in SQL, period. In fact, chapter 4 of his SQL and Relational Theory: How to Write Accurate SQL Code is titled "NO DUPLICATES, NO NULLS", with subchapters "4.4 What's Wrong with Nulls?" and "4.5 Avoiding Nulls in SQL" (follow the link: thanks to Google Books, you can read some pages on-line). Fabian Pascal on SQL NULLs From its Practical Issues in Database Management - A Reference for the Thinking Practitioner (no excerpts on-line, sorry):
|
|||||||||||||
|
|
Maybe it depends, but I thought |
|||
|
|
|
NULL isn't equal to anything, not even itself. My personal solution to understanding the behavior of NULL is to avoid using it as much as possible :). |
|||||||||||||||
|
|
The concept of NULL is questionable, to say the least. Codd introduced the relational model and the concept of NULL in context (and went on to propose more than one kind of NULL!) However, relational theory has evolved since Codd's original writings: some of his proposals have since been dropped (e.g. primary key) and others never caught on (e.g. theta operators). In modern relational theory (truly relational theory, I should stress) NULL simply does not exist. See The Third Manifesto. http://www.thethirdmanifesto.com/ The SQL language suffers the problem of backwards compatibility. NULL found its way into SQL and we are stuck with it. Arguably, the implementation of I recommend avoiding the use of NULLable columns in base tables. Although perhaps I shouldn't be tempted, I just wanted to assert a corrections of my own about how
This is easy to prove e.g.
correctly generates an error in SQL Server. If the result was a data value then we would expect to see The logical value In SQL DML, For example:
The
Read that again carefully, following the logic. In plain English, our new row above is given the 'benefit of the doubt' about being In SQL DML, the rule for the
In plain English, rows that evaluate to |
|||
|
|
|
Just because you don't know what two things are, does not mean they're equal. If when you think of http://www.postgresql.org/docs/8.4/static/functions-comparison.html
|
|||
|
|
|
MSDN has a nice descriptive article on nulls and the three state logic that they engender. In short, the SQL92 spec defines NULL as unknown, and NUL used in the following operators causes unexpected results for the uninitiated:
|
|||||
|
|
The question: However the question: nullVariable = null is comparing the values |
|||
|
|
|
null is unknown in sql so we cant expect two unknowns to be same. However you can get that behavior by setting ANSI_NULLS to Off(its On by Default) You will be able to use = operator for nulls
|
|||||||||
|
|
Because So, if to our logic
where known value |
||||
|
|