is its somehow possible to do a select for empty strings and NULL values in Mysql without using or?
this:
select * from table where col IN (null, "");
doesnt work, it ignores the null (or possibly matches it with the string 'null'
thanks, P.V. Goddijn