用case when替代decode
原先oracle中查询,不同分支的判断,用 decode
在mysql中没有decode,用
case 字段
when 值1 then 返回值1
when 值2 then 返回值2
。。。。
else 返回值N end
来替代
赞 (0)
原先oracle中查询,不同分支的判断,用 decode
在mysql中没有decode,用
case 字段
when 值1 then 返回值1
when 值2 then 返回值2
。。。。
else 返回值N end
来替代