sql 中的coalesce函数

coalesce(表达式)

相当于

case when 表达式 is not null then 表达式

       when 表达式1 is not null then 表达式1

       else null

end

继续追寻。。。。。。
原文地址:https://www.cnblogs.com/lfzwenzhu/p/1868206.html