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,'')=''
Output
It returns the total number of records of sysobjects. The output of query1 and query3 is same.

I hope this is useful.

Shubham KumarPosted Jan 21, 2016, 4:01 AM
nice
Kiran ThakurPosted Jan 16, 2016, 5:32 AM
Thanks for nice share