MVSFORUMS.com Forum Index MVSFORUMS.com
A Community of and for MVS Professionals
 
 FAQFAQ   SearchSearch   Quick Manuals   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Effective query

 
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> Database
View previous topic :: View next topic  
Author Message
kbn
Beginner


Joined: 14 Nov 2005
Posts: 13
Topics: 10

PostPosted: Thu Jan 17, 2008 2:30 am    Post subject: Effective query Reply with quote

Hi,

I have a table T1 with an index I1 with columns C1, C2, C3 in sequence.

Which of the below query is effective?

select * from T1
where C1 = 'a'
and C2 = 'b'
and C3 >= 'c'

OR

select * from T1
where C2 = 'a'
and C1 = 'b'
and C3 >= 'c'

thanks,
kbn
Back to top
View user's profile Send private message
vkphani
Intermediate


Joined: 05 Sep 2003
Posts: 483
Topics: 48

PostPosted: Thu Jan 17, 2008 4:52 am    Post subject: Re: Effective query Reply with quote

kbn wrote:
Hi,

I have a table T1 with an index I1 with columns C1, C2, C3 in sequence.

Which of the below query is effective?

select * from T1
where C1 = 'a'
and C2 = 'b'
and C3 >= 'c'

OR

select * from T1
where C2 = 'a'
and C1 = 'b'
and C3 >= 'c'

thanks,
kbn


kbn,

If you consider the execution time, both the queries takes same time to execute.
Back to top
View user's profile Send private message Send e-mail
acevedo
Beginner


Joined: 03 Dec 2002
Posts: 127
Topics: 0
Location: Europe

PostPosted: Thu Jan 17, 2008 7:05 am    Post subject: Reply with quote

btw, both queries are not equal.
Back to top
View user's profile Send private message
videlord
Beginner


Joined: 09 Dec 2004
Posts: 147
Topics: 19

PostPosted: Thu Jan 17, 2008 1:45 pm    Post subject: Reply with quote

first of all, different result would be returned by the 2 queries. the execute time may different depend on how may result returned
second, the access path would be the same (most case), index scan, with 3 match columns
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> Database All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


MVSFORUMS
Powered by phpBB © 2001, 2005 phpBB Group