IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Require help in DB2 Query


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Shruti Takkar

New User


Joined: 09 Apr 2015
Posts: 5
Location: india

PostPosted: Wed Aug 03, 2016 10:57 pm
Reply with quote

Hi ,

I have to execute below problem in DB2 query, please suggest some valuable options.

Consider Table A having account details.
I need to count accounts from Table A for multiple scenarios.

I can count accounts using multiple case when conditions like below.
===========================================
select Count(case when t1.a = 1 then 1 else 0 end) as A_COUNT
, Count(case when t1.b = 2 then 1 else 0 end) as B_COUNT
from t1
============================================

My problem here is,, if my account is counted in A_COUNT, it should not get double counted in B_COUNT.

There are multiple when conditions and it is not possible to tweak them to make all conditions mutually exclusive.

Regards,
Shruti
Back to top
View user's profile Send private message
Rohit Umarjikar

Global Moderator


Joined: 21 Sep 2010
Posts: 3053
Location: NYC,USA

PostPosted: Wed Aug 03, 2016 11:27 pm
Reply with quote

you will have to explain better. tell us the input table and sample values and expected output and then it goes easy for anyone to provide you a solution. why do you not do group by on account number and those t1.a,t1.b and so on?
Back to top
View user's profile Send private message
chandan.inst

Active User


Joined: 03 Nov 2005
Posts: 275
Location: Mumbai

PostPosted: Tue Aug 09, 2016 11:20 am
Reply with quote

is this something you are expecting?

Code:
select
Count(case when (t1.a = 1 and t1.b<> 2) then 1 else 0 end) as A_COUNT
, Count(case when (t1.b = 2 and t1.a<>1) then 1 else 0 end) as B_COUNT
from t1


Thanks,
Chandan
Back to top
View user's profile Send private message
Rohit Umarjikar

Global Moderator


Joined: 21 Sep 2010
Posts: 3053
Location: NYC,USA

PostPosted: Wed Aug 10, 2016 12:06 am
Reply with quote

Code:
Select innr.type,sum(innr.cnt )
from
(select
    case  when t1.a = 1 then 1 else 0
            when t1.b = 2  then 1 else 0 end  as cnt
    ,case when t1.a = 1 then 'A'
            when t1.b = 2  then 'B' end as type
from table temp; ) as innr
group by innr.type
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts RC query -Time column CA Products 3
No new posts Dynamically pass table name to a sele... DB2 2
No new posts Query on edit primary command CLIST & REXX 5
No new posts Query on edit primary command CLIST & REXX 1
No new posts Issue with EXEC CICS QUERY SECURITY c... CICS 6
Search our Forums:

Back to Top