I have a database with some null values.
I understand that I should be able to use IS NULL within my query.
From within PhpMyAdmin, I get this:
MySQL returned an empty result set (i.e. zero rows).
What am I doing wrong?
I understand that I should be able to use IS NULL within my query.
Code:
SELECT * FROM `mytable` WHERE mycol IS NULL
From within PhpMyAdmin, I get this:
MySQL returned an empty result set (i.e. zero rows).
What am I doing wrong?