What is the output of following query.
Query 1: Select * from sysobjects where null is null
Output
It return the total number of records of sysobjects.
Query 2: Select * from sysobjects where null = null
Output
It return 0 records of sysobjects.
Query 3: Select * from sysobjects where isnull(null,'')=''