COALESCE
Returns the first non-null value in the argument list. Like a CASE expression, arguments are only evaluated if necessary.
第1引数がnullだったら第2引数を、第2引数がnullだったら第3引数を返す…を繰り返して、第n引数もnullだったらnullを返す。
COALESCE
Returns the first non-null value in the argument list. Like a CASE expression, arguments are only evaluated if necessary.
第1引数がnullだったら第2引数を、第2引数がnullだったら第3引数を返す…を繰り返して、第n引数もnullだったらnullを返す。