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

regarding optimising the query


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

Active User


Joined: 17 Oct 2004
Posts: 191
Location: hyderabad

PostPosted: Tue Oct 19, 2004 10:24 am
Reply with quote

Hi

can we use the if condition or any other condition in select query
ie i use to select query for two conditons

If flag = not set

Select * from Table
where role_plyr_id = 'xxxxx'
and valid_from_date = '01/01/2004'

If flag = set

Select * from Table
where role_plyr_id = 'xxxxx'
and valid_from_date = '01/01/2004'
and Agreement_id = 'oooo'


plz find that only one line is in where condition difers between 2 queries

can we the query like below

Select * from Table
where role_plyr_id = 'xxxxx'
and valid_from_date = '01/01/2004'
if Flag = set
Agreement_id = 'oooo'
else
continue
End-if


Thanks
Siva
Back to top
View user's profile Send private message
janardhana Reddy

New User


Joined: 20 Oct 2004
Posts: 17
Location: Bangalore

PostPosted: Wed Oct 20, 2004 2:54 pm
Reply with quote

Hi ,


It's not possible to use the if condition in the query, but after fetching the result from the first query you can check the value of column Agreement_id and proceed further..


thanks
Janardhan
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