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
原文:http://www.cnblogs.com/abcyrf/p/7811878.html