I am trying to make a selection from a MySQL database using the syntax WHERE col LIKE \'%\' but I want to select even NULL values with that query. Is t
WHERE col LIKE \'%\'
NULL
SELECT * FROM table WHERE (job LIKE '%' OR job IS NULL)