I have a column in my table that has a few different values, of which I verified by using a group by.
When I do something like this it returns a number amount:
SELECT COUNT(*) FROM table WHERE age='';
However when I do this it always returns 0 even though that is incorrect:
SELECT COUNT(*) FROM table WHERE age=NULL;
Any idea why this is returning 0 when it should be returning the correct result?
Read 3.3.4.6. Working with NULL Values