If you're querying the SQL server then try;
SELECT ... WHERE column IS NULL
(or if defined as NOT NULL);
SELECT ... WHERE column="";
Alternatively if you've performed your query and are checking w/PHP then using;
if($mycolumn == "") { ... }
should work for testing a column is null or empty.
Matt