Why select * from [table] where [table].[column] != null
is not working for my query and result is empty.
But select * from [table] where [table].[column] is not null
is working and find records that [table].[column]
is fill with null
!
What is the difference between != null
and is not null
in Microsoft SQL Server?