peace Constraint Violating Yak Guru
279 Posts
khtan In (Som, Ni, Yak)
Singapore 16746 Posts
ISNULL ( <column> , 0) or COALESCE ( <column> , 0)
CASE WHEN <column> IS NULL THEN 0 ELSE <column> END
visakh16 Very Important crosS Applying yaK Herder
India 47157 Posts
quote:Originally posted by peaceThanks.I was thinking to use case when...This is more usefull.Thanks