What is NULL?
operations on NULL.
where null=null
--Null never be equal to Null unless SET ANSI_NULLS
OFF.
tbltest
int identity(1,1),
varchar(12),
varchar(200)
tbltest(name,city)values
Meerut.You make a query like
tbltest where city<>'merrut'
f. Where are a, d, and e.as
use ISNULL() as
tbltest where isnull(city,'')<>'merrut'