Backboards: 
Posts: 161
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

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:
Post a message   top
Replies are disabled on threads older than 7 days.