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

TUNE the query


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

Active User


Joined: 06 Sep 2007
Posts: 112
Location: India

PostPosted: Mon Sep 26, 2011 10:58 am
Reply with quote

Hi

Below is the query :

Select C1,C2 from T1,T2 where T1.C1 = T2.C1
and C3 < ( Select NEW_COL from T3 where T1.C1 = T3.C1)
and C9 >= ( Select NEW_COL from T3 where T1.C1 = T3.C1)
and C11 > ( Select NEW_COL from T3 where T1.C1 = T3.C1) ;

Here when the above query runs , Select for T3 executes thrice.

Is there any way to tune this as the same column value is being checkd against three colums.
Back to top
View user's profile Send private message
ashimer

Active Member


Joined: 13 Feb 2004
Posts: 551
Location: Bangalore

PostPosted: Mon Sep 26, 2011 12:58 pm
Reply with quote

Try
Code:

Select C1,C2 from T1,T2,T3
where T1.C1 = T2.C1
and T1.C1 = T3.C1
and C3 < T3.NEW_COL
and C9 >= T3.NEW_COL
and C11 > T3.NEW_COL ;
Back to top
View user's profile Send private message
Ambili S

Active User


Joined: 06 Sep 2007
Posts: 112
Location: India

PostPosted: Mon Sep 26, 2011 2:18 pm
Reply with quote

Ashimer ,

This would give results from T3 table also. I do not want the data from T3.
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Mon Sep 26, 2011 2:39 pm
Reply with quote

Ambili S wrote:
Ashimer ,

This would give results from T3 table also. I do not want the data from T3.


god on a crutch.

Select t1.C1
,t1.C2
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