含有else
case
when 条件1 then 值
when 条件n then 值
else 不符合条件的赋这个值
end
不含有else,匹配不上的为null
case
when 条件1 then 值
when 条件n then 值
end
含有else
case
when 条件1 then 值
when 条件n then 值
else 不符合条件的赋这个值
end
不含有else,匹配不上的为null
case
when 条件1 then 值
when 条件n then 值
end