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

db2 sql query


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

New User


Joined: 12 Mar 2009
Posts: 21
Location: chennai

PostPosted: Fri May 21, 2010 3:02 pm
Reply with quote

Hi,

I have to write one sql query to see the policy number and plan id available in the DB2 table.Each policy number has the separate plan id.

For example:

Policy plan

a 1
b 4
c 6
d 5
e 1

select policy,plan where policy,plan=(a,1)(?) -

i want the list of policy to be checked in the single query.
Back to top
View user's profile Send private message
guptae

Moderator


Joined: 14 Oct 2005
Posts: 1208
Location: Bangalore,India

PostPosted: Fri May 21, 2010 3:21 pm
Reply with quote

Hello There,

I am not sure whetehr I understand your query correctly but check below query

Code:
SELECT POLICY,
            PLAN
FROM  TABLE
WHERE (POLICY= 'a' and PLAN= 1) OR
            (POLICY= 'b' and PLAN= 4) OR
...
Back to top
View user's profile Send private message
balajipradeep

New User


Joined: 12 Mar 2009
Posts: 21
Location: chennai

PostPosted: Fri May 21, 2010 4:21 pm
Reply with quote

Thanks. I also tried the same way.
Back to top
View user's profile Send private message
GuyC

Senior Member


Joined: 11 Aug 2009
Posts: 1281
Location: Belgium

PostPosted: Fri May 21, 2010 5:40 pm
Reply with quote

values ((a,1),(b,4)) isn't supported (yet) on z/OS

the simpliest way to do it is with the OR clauses like guptae said

for performance reasons you could try

Code:
with input (pol,plan) as (
select 'a',1 from sysibm.sysdummy1
union all
select 'b',4 from sysibm.sysdummy1
union all
...
)

select a.pol, a.plan from table1 A, input
where (input.pol,input.plan) = (a.pol,a.plan)

or the old fashioned way :
Code:
select a.pol, a.plan from table1 A where pol = 'a' and plan =1
union all
select a.pol, a.plan from table1 A where pol = 'b' and plan =4
union all
...
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