Here is my query:
select * from students where status != 4.
I am not getting rows with status null.
Shouldn't it return all the rows where status is not 4 - including rows with null status values?
I can get what I need by following query.
select * from students where status != 4 or status is null