Dealing with NULL Data - the ISNULL Function
1> -- Dealing with NULL Data - the ISNULL Function 2> 3> 4> select ISNULL(NULL, 5) 5> 6> GO ----------- 5 (1 rows affected) 1>