Using an index with the ORDER BY clause

I have a table with about 500,000 records, and I want to select from this table filtering records by col1, col2 and col3. Also, I want to order the results by three other columns: col4, col5, col6. I have tried to optimize the query using an index on col4, col5 and col6, but when I change the column order in the order by clause or the direction (acending or descending), the index is not used. My question it is what kind of index should I use for the order by clause? The database version it is Oracle 9i.

    Requires Free Membership to View

The index should match your order by clause, as you have seen. If you want to order by col4, col5, col6, create the index with the columns in the same order.

This was first published in June 2005

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.