What is the difference between ColumnName = Null
and ColumnName Is Null
in SQL Server? I have researched about this but I didn't get any clarification.
Actually I want to retrieve column has null value
Select * from Table1 where column1 is null
This query returning expected result but the following query not giving
Select * from Table1 where column1 = null