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;
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;