In response to
"Computer / SQL question: Why would something with no value (e.g. '') *not* be Null?"
by
JaxSean
|
depending on the flavor of SQL, an empty appearing cell could not be null
Posted by
prayformojo (aka mayhem)
Nov 19 '09, 11:26
|
the best way to guard against this is to do something like this:
(if you want to make sure that you're including both fields that actually are null and those that just appear to be empty)
len(ltrim(isnull(fieldname,'')))=0
does that answer your question?
|
Responses:
|