oracle 返回第一个不为空的列的值

select coalesce(comm,0) from emp;

作用是返回函数coalesce参数中第一个不为null的值。

原文地址:https://www.cnblogs.com/wolil/p/5802278.html