decode&case语法

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;

 

posted @ 2017-11-09 22:50  abcyrf  阅读(107)  评论(0编辑  收藏  举报