Think Twice
IT技術メモ | PostgreSQLのメモ
Created: 2022-10-23 / Updated: 2022-10-23

PostgreSQLで最初のnullじゃない文字列を取得する関数(coalesce)


目次


使い方

SQL
Copy
coalesce(文字列, [, 文字列...])
使用例
Copy
select coalesce('ABC', null);  -- 'ABC'
select coalesce(null, 'ABC');  -- 'ABC'
select coalesce(null, null, 'ABC', 'DEF');  -- 'ABC'
select coalesce(null, null, null);  -- null

参考

参考サイト