vote up 4 vote down star

So I am wondering if there is a definitive answer to this question.
Also, does it matter if the index is clustered vs. non-clustered. Is it the same in all RDBMS implementations or is the exact behavior going to be proprietary?

flag

63% accept rate
Definitive answer? No. Proprietary is probably the wrong word here - degree of sophistication is more appropriate. A decent optimizer will use external heuristics such as statistics, IO cost (esp. clustered vs. nonclustered), or other hints rather than sheer term sequencing to choose indices. – stephbu Nov 11 '08 at 5:34

4 Answers

vote up 6 vote down

SQL is a declarative language, not a procedural one. Each SQL implementation is going to have its own quirks about implementation details like which indexes get used, how the optimizer decides which indexes to use, what the SQL programmer can do to affect the choice, and so on.

link|flag
That's why I always would check the query plan in practice, however, how would you answer for an interview? – DanielHonig Nov 11 '08 at 5:25
To be precise, its functional. But that's the perfect answer. – Hugo Nov 11 '08 at 5:31
@Ned can you make any statements that are almost always true? Such as the from clause or order by clause will always impact query performance? – DanielHonig Nov 11 '08 at 5:57
@Hugo: I wonder why you say it is functional: there's no functional composition, and the statements are very declarative: SELECT this, UPDATE that, etc, with no specifics about how to go about it. – Ned Batchelder Nov 12 '08 at 1:16
vote up 1 vote down

Use of indexes is not a part of the SQL standard, but rather an implementation detail of the particular DBMS.

Ideally, it shouldn't affect it, since it doesn't affect the actual rows that are returned.

But I've seen queries on an unnamed DBMS that does change index use based on the SQL query order.

link|flag
vote up 1 vote down

The ordering of the where clause shouldn't affect the query plan or the indices used in any respectable database although I have seen at least one (non-respectable) database where this wasn't the case.

link|flag
vote up 1 vote down

At one time (long ago, i.e. until about 1995) Oracle used to have only a "rule based optimiser", and with this it was certainly the case that the order of predicates in the WHERE clause, and the order of tables in the FROM clause (there was no JOIN syntax then), affected the query plan: this was documented to be the case. However, cost-based optimisers (which Oracle has had since then) attempt to examine all possible plans (or at least, as many as they can within some sensible parameters) and choose the most efficient.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.