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

Regarding query efficiency


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

New User


Joined: 22 Aug 2005
Posts: 59
Location: india

PostPosted: Wed Jul 30, 2008 11:46 am
Reply with quote

Hi ,

I want to know which one of the two queries written below is performance efficient

1.SELECT DISTINCT A . CUST_ID_NUMBER

FROM TEJAPCL_AP_CT_LK A

WHERE A . CUST_ID_NUMBER NOT IN (

SELECT A . CUST_ID_NUMBER

FROM TEJAPCL_AP_CT_LK A , TEJAPTM_AP_TR_MSTR B

WHERE B . APP_REF_NUMBER = A . APP_REF_NUMBER GROUP BY

CUST_ID_NUMBER )




2.SELECT DISTINCT C . CUST_ID_NUMBER

FROM TEJAPCL_AP_CT_LK C

WHERE NOT EXISTS (

SELECT A . CUST_ID_NUMBER

FROM TEJAPCL_AP_CT_LK A , TEJAPTM_AP_TR_MSTR B

WHERE B . APP_REF_NUMBER = A . APP_REF_NUMBER

AND C.CUST_ID_NUMBER = A.CUST_ID_NUMBER )



Regards,
Sathish
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


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

PostPosted: Wed Jul 30, 2008 12:48 pm
Reply with quote

since you obviously ran an explain, what did the explain indicate?
Back to top
View user's profile Send private message
ashimer

Active Member


Joined: 13 Feb 2004
Posts: 551
Location: Bangalore

PostPosted: Wed Jul 30, 2008 2:14 pm
Reply with quote

Quote:


since you obviously ran an explain, what did the explain indicate?



icon_biggrin.gif
Back to top
View user's profile Send private message
sudhakar84

New User


Joined: 20 Jun 2008
Posts: 25
Location: chennai

PostPosted: Wed Jul 30, 2008 4:45 pm
Reply with quote

Hi,

If the result of the outer query is small and the result set of the inner sub-query is large, then use EXISTS - if it is the other way around, then use the IN clause.
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