I have noticed a number of queries at work and on SO are using limitations in the form:
isnull(name,'') <> ''
Is there a particular reason why people do that and not the more terse
name is not null
Is it a legacy or a performance issue?
|
I have noticed a number of queries at work and on SO are using limitations in the form:
Is there a particular reason why people do that and not the more terse
Is it a legacy or a performance issue? |
|||||
|
|
In a WHERE clause
will always return no results regardless of whether name is null or not. If name is Null you are doing If name is not null and contains say Jim you are doing 'Jim' <> 'Jim' which is false. Edit Following the clarification to the question note that
Which gives
|
||||
|
|
Will only check if the field is not null. If the field contains an empty string, then the field is no longer null.
Checks for both a null and an empty string. |
|||
|
|
|
Performance-wise, it depends. |
|||
|
|
Well I can see them using this because this way if the name doesn't match or is null it returns as a failed comparison. This really means: Where as this one |
|||
|
|
|
They don't mean the same thing.
This checks for records where the name field is null
This one changes the value of null fields to the empty string so they can be used in a comparision. In SQL Server (but not in Oracle I think), if a value is null and it is used to compare equlaity or inequality it will not be considered becasue null means I don't know the value and thus is not an actual value. So if you want to make sure the null records are considered when doing the comparision, you need ISNULL or COALESCE(which is the ASCII STANDARD term to use as ISNULL doen't work in all databases). What you should be looking at is the differnece between
a.name <> b.name then you will understand why the ISNULL is needed to get correct results. |
|||
|
|
|
I apparently misread your question. So let me strike my first answer and try this one:
is a misguided shortcut for
|
||||
|
|
|
Others have pointed out the functional difference. As to the performance issue, in Postgres I've found that -- oh, I should mention that Postgres has a function "coalesce" that is the equivalent of the "isnull" found in some other SQL dialects -- but in Postgres, saying
is significantly faster than
Also, it can be awesomely dramatically faster to say
over
A greater than test can use the index and thus skip over all the blanks, while a not-equal test has to do a full file read. (Assuming you have an index on the field and no other index is used in preference.) |
|||
|
|
|
Also if you want to make use of the index on that column, use
|
|||
|
|
|
These two queries are not the same. For example, I do not have a middle name, this is a known fact, which can be stored as
However, if we don't know someone's middle name, we can store NULL. So, ISNULL(MiddleName, '') means "persons without known middle names". |
|||
|
|
|
It is to handle both the empty string and
|
|||
|
|