i need write a select query to find the number of rows which have an empty fulltext field but for some reason both:
select count(id) from table where field is null;
and
select count(id) from table where field = "";
don't seem to work!
what else is there?!