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

BETWEEN Versus > and < in DB2 SQL Query - Performance


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

New User


Joined: 11 Jul 2005
Posts: 87

PostPosted: Thu Jul 10, 2008 1:14 pm
Reply with quote

Hi All,

I have the following querys:

SELECT ID, ADDRESS
FROM EMPLOYEE A
WHERE ID=12345
AND CURRENT DATE BETWEEN A.EFF_DT AND A.EXP_DT

SELECT ID, ADDRESS
FROM EMPLOYEE A
WHERE ID=12345
AND CURRENT DATE > A.EFF_DT AND CURRENT DATE < A.EXP_DT

Out of these two queries which query yields better performance.

Here I am using operators > and < instead of BETWEEN.

Please suggest.

Thanks,
Chinni.
Back to top
View user's profile Send private message
ashimer

Active Member


Joined: 13 Feb 2004
Posts: 551
Location: Bangalore

PostPosted: Thu Jul 10, 2008 2:59 pm
Reply with quote

Do an EXPLAIN on your query and see the o/p in PLAN_TABLE and DSN_STATEMNT_TABLE ...
BETWEEN is usually more efficient than <= predicate and the >= predicate
Except when comparing a host variable to 2 columns

I guess this concept was bought in DB2 versions after version 6 ... bfore that > and < used to perform better ... i read this in some blog by craigmullins ...
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


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

PostPosted: Thu Jul 10, 2008 3:12 pm
Reply with quote

Quote:

Out of these two queries which query yields better performance


Performance is not your worry, accuracy is.

BETWEEN, as ashimer said, is =< =>, NOT < and >.

so, you do not want to use between.
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 exploiting Z16 performance PL/I & Assembler 2
No new posts Query on edit primary command CLIST & REXX 5
No new posts Query on edit primary command CLIST & REXX 1
Search our Forums:

Back to Top