简体   繁体   中英

Show measure based on other column

I am trying to write oracle sql for below scenario. Can anyone provide pointers?

My data is like

在此处输入图片说明

Now whenever a customer has 401k account I have to default the balance to zero else show the total balance.

Thanks, Pratap

You can do this with a case expression.

select customer,
case when count(case when account='401K' then 1 end) > 0 then 0 else sum(balance) end 
from tbl
group by customer

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM