码迷,mamicode.com
首页 > 其他好文 > 详细

decode与case when

时间:2017-11-07 18:20:01      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:mic   weight   ros   mode   20px   strong   span   one   sele   

语法
decode(条件,值1,返回值1,值2,返回值2,...值n,返回值n,缺省值)
select * from reglike;
select decode(substr(name,1,3),aaa,yes,no) decode from reglike;
 
技术分享技术分享
 
语法
case when 条件1 then 值1 when 条件2 then 值2 ... when 条件n then 值n else 缺省值 end
select * from reglike;
select case when substr(name,1,3)=‘aaa‘ then ‘yes‘ else ‘no‘ end case from reglike; 
技术分享技术分享

decode与case when

标签:mic   weight   ros   mode   20px   strong   span   one   sele   

原文地址:http://www.cnblogs.com/tonghaolang/p/7799681.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!