In how many languages is Null not equal to anything not even Null?
|
|
It's this way in SQL (as a logic language) because null means unknown/undefined. However, in programming languages (like say, C++ or C#), a null pointer/reference is a specific value with a specific meaning -- nothing. Two nothings are equivilent, but two unknowns are not. The confusion comes from the fact that the same name (null) is used for both concepts. |
||
|
|
|
|
In SQL you would have to do something like:
rather than
|
||
|
|
|
|
In JavaScript |
||
|
|
|
|
In C#, Nullable<bool> has interesting properties with respect to logical operators, but the equality operator is the same as other types in that language (i.e., ((bool?)null == (bool?)null) == true). To preserve the short-circuted behavior of the short-circuted logical operators, and to preserve consistancy with the non-short-circuted logical operators, the nullable boolean has some interesting properties. For example: true || null == true. false && null == false, etc. This stands in direct contradiction with other three-valued logic languages such as ANSI SQL. |
||
|
|
|
|
In VB6 the expression In VB6 you could say that You're supposed to test for it using the VB6 also has other special values:
I remember being a bit disgusted with VB. |
|||
|
|
|
|
You can make ruby work that way:
|
||
|
|
|
MySQL has a null-safe equality operator, <=>, which returns true if both sides are equal or both sides are null. See MySQL Docs. |
||
|
|
|
Oracle is this way.
|
||
|
|
