ISNULL(5, 15) : ISNULL « Select Query « SQL Server / T-SQL






ISNULL(5, 15)


1> select ISNULL(5, 15)
2> GO

-----------
          5

(1 rows affected)
1>
           
       








Related examples in the same category

1.Using ISNULL in select statement
2.ISNULL allows a display of the specified value as substitution for NULL
3.ISNULL function demo
4.Dealing with NULL Data - the ISNULL Function
5.ISNULL with subquery