「MySQL」IFNULLでnullの値を変換するサンプル
構文
IFNULL(表現式, 値2)
表現式はNULLの場合、引数は値2に変換する
使用例1
select ifnull(username, 'user007') from user_tbl
使用例2
select ifnull(null, "test45") as res;
結果
res
test45
Coding Changes the World
構文
IFNULL(表現式, 値2)
表現式はNULLの場合、引数は値2に変換する
使用例1
select ifnull(username, 'user007') from user_tbl
使用例2
select ifnull(null, "test45") as res;
結果
res
test45