In MySQL, what is the syntax for a query asking for everything from a tables EXECPT where a specific field has a null value?
I tried this but it brings back the null records too:
SELECT * FROM table WHERE field IS NOT NULL;
whats the correct way to do it?