5> DECLARE @Value1 int6> DECLARE @Value2 int7> DECLARE @Value3 int8> SET @Value2 = 229> SET @Value3 = 95510> SELECT COALESCE(@Value1, @Value2, @Value3)11> GO----------- 22(1 rows affected)1>