Define Is Null operator in oracle
Is Null
IS NULL operator is usually used to check if the value of a column is NULL or not. Example: Sql> select *from emp where comm is not null;
Sql> select *from emp where comm is not null;