My query is not giving proper results when I try to select user records that don't have email:
select * from users where email=''
And:
select * from users where email=NULL
Both give different results but neither give correct results. How can I get correct results?