1、空值转换 返回第一个非空值
select coalesce(col,v1,v2..) from xxxx
2、select if判断
select case where 逻辑判断 then 结果
case where 逻辑判断 then 结果
else 结果
end
from xxxx
select coalesce(col,v1,v2..) from xxxx
2、select if判断
select case where 逻辑判断 then 结果
case where 逻辑判断 then 结果
else 结果
end
from xxxx