I need to get the records where "fulltext" is empty.
This is wha I tried:
SELECT * FROM `j30_k2_items` WHERE 'fulltext'= ' '
SELECT * FROM `j30_k2_items` WHERE 'fulltext'= ''
SELECT * FROM `j30_k2_items` WHERE 'fulltext' IS NULL
They all return an empty query although there are lots of records that match the query.