1. 程式人生 > >decode&case

decode&case

case amp case when then name xxx from select sco

select id, decode (type,1,a,2,b,3,c,999) from xxx;

select name, (case when score<0 then ‘d‘

when score <60 then ‘d‘

when score<=60 then ‘c‘

else ‘b‘ end )from xxx;

decode&case