[SOLVED] MySQL statement not working
Posted: Tue Aug 23, 2005 3:02 pm
Why is the following sql statement not working?
The above generates nothing. Why is that? The brdPosition columns contains some NULL values and some don't. I want to filter all the NULL values. How do I do that?
Thanks!
Code: Select all
SELECT *
FROM boardMember
WHERE brdPosition = NULL
ORDER BY brdLstName ASCThanks!