
Signature
--Brian
(Please reply to the newsgroups only.)
Brian ,
Sorry , What I means is I create an index in TableA with FieldA , B and C
all asc order.
What is the diff if I perform the query like :
A) Select * From TableA
Where FieldA = 'A' And FieldB = 'B' And FieldC = 'C'
B) Select * From TableA
Where FieldC = 'C' And FieldB = 'B' And FieldC = 'A'
Travis Tan
> The optimizer should create the same execution plan for both of these
> statements therefore performance should be the same.
[quoted text clipped - 12 lines]
> >
> > Do the performance is the same ?
Marcin Pêksa - 27 Sep 2005 12:15 GMT
Same answer:
>The optimizer should create the same execution plan for both of these
>statements therefore performance should be the same.
> Brian ,
>
[quoted text clipped - 26 lines]
>> >
>> > Do the performance is the same ?