I have a column which can contain values from 1 to 6 and null..
Then when I try to run the query below.. rows with null value on that column do not return
select * from customer where Position not IN ('1','2', '3', '4' ,'5', '6')
Is there way I can retrieve null results without adding this on above query
OR Position is null