2개의 인수SELECT NVL(column1, 'default') AS resultFROM table_name;3개 이상 인수SELECT COALESCE(column1, column2, 'default') AS resultFROM table_name;