coalesce() 함수

  • col1에 존재하는 NULL 값을 특정 값(change_value)로 변경
select coalesce(col1, change_value) as fitted_col1 
from table