> I am *sure* that I am overlooking the obvious...
>
> I have a need to identify blank columns in my tables, and have been unable
> to find a suitable query, eg
>
> SELECT * from table WHERE column = '';
>
> What am I doing wrong here?

It depends on what "blank" means?  Does it mean an empty string, a
zero, a null, or something else?  If "blank" means null, then your
where clause needs to be "where column is null"

Brad
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to