oracle 替换列中null值1.替换scott表中comm列 用0代替nullselect empno,(case when comm is null then 0 e
oracle 替换列中null值
1.替换scott表中comm列 用0代替null
select empno,(case when comm is null then 0 else comm end ) as comm from scott.emp;
- 1楼tingshun1989昨天 15:40
- nvl不是更好?
oracle 替换列中null值
1.替换scott表中comm列 用0代替null
select empno,(case when comm is null then 0 else comm end ) as comm from scott.emp;