OracleAppsDNA

Why does NULL = NULL Fail in SQL statements?

Select * from emp where 1 = 1;
  The above statement works fine but why does the below statement wont work?  
select * from emp where NULL = NULL;
Exit mobile version