Which SQL operator checks columns for the absence of data ?

Question

Which SQL operator checks columns for the absence of data ?

Re: Which SQL operator checks columns for the absence of data ?

NULL Operator will do the job for you.
For example -
select * from table1 where colunm1 IS NULL;