oracle中的case函数学习

首先介绍一下case的简单语法:

写法一:

case 字段名 
when 'value1' then 'replace1'
when 'value2' then 'replace2'
...
else 'other' end


写法二:

case 
when 字段名 = 'value1' then 'replace1'
when 字段名 = 'value2' then 'replace2'
...
else 'other' end


现在拿我今天的一个小任务作为例子:

需求:目前有一张表,三个字段,分别是机构编码(jgbm),机构名称(jgmc),机构人口(czrk)。里面存了某市机构的所有卫生单位,现在需要把所有机构按照机构等级排列成树结构并列出他的人口数。下面给我我的代码:

select case when t.jgbm in (select m.jgbm
                              from xt_rkhz m
                             where m.jgbm like 'A1401__000000') then t.jbmc else '' end,
       case when t.jgbm in (select m.jgbm
                              from xt_rkhz m
                             where m.jgbm like 'A1401_____000' and m.jgbm not like 'A1401__000000') then t.jbmc else '' end,
       case when t.jgbm in (select m.jgbm
                              from xt_rkhz m
                             where m.jgbm like 'A1401_____000') then '' else t.jbmc end,                
       t.*
 from xt_rkhz t order by t.jgbm


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值