How to replace null values with a text?

后端 未结 6 809
渐次进展
渐次进展 2020-12-16 12:25

I need to display Employee last_name and their commission amount from employees table in Oracle SQL, but the condition is if it encounter NULL valu

6条回答
  •  爱一瞬间的悲伤
    2020-12-16 13:17

    select Last_Name, decode(nvl(salarycommission_pct,'0'),0,'No Commission',salarycommission_pct) as COMM from employees;

提交回复
热议问题