vote up 3 vote down star

A basic simple question for all of you DBA.

When I do a select, is it always guaranteed that my result will be ordered by the primary key, or should I specify it with an 'order by'?

I'm using Oracle as my DB.

flag

6 Answers

vote up 32 vote down check

No, if you do not use "order by" you are not guaranteed any ordering whatsoever. In fact, you are not guaranteed that the ordering from one query to the next will be the same. Remember that SQL is dealing with data in a set based fashion. Now, one database implementation or another may happen to provide orderings in a certain way but you should never rely on that.

link|flag
1  
Any chance the records will be returned in the order of the clustered index? – ChrisLoris May 5 at 13:33
1  
A very good chance, but not guaranteed. Complicated queries involving joins, views, sub queries, and the like can leave the result set ordered very differently. – Joel Coehoorn May 5 at 13:36
ANd it may return sometimes inthe clustered index order and sometimes not. Always use an order by if you want a specific order. – HLGEM May 5 at 13:38
4  
"Any chance?" Yes, somewhere between 0 and 100%, a range large enough that you shouldn't rely on it. Use standard SQL syntax and behavior as much as possible, it eases the task of moving between and/or supporting multiple DBMS vendors greatly (I'm not saying don't optimize for a specific vendor, just do go mad about it - use some common sense, no matter how uncommon it seems to be :-). – paxdiablo May 5 at 13:58
1  
I refuse to use Oracle until it can tell the difference between a NULL and an empty string :-) – paxdiablo May 7 at 1:48
show 3 more comments
vote up 3 vote down

When I do a select, is it always guaranteed that my result will be ordered by the primary key, or should I specify it with an 'order by'?

No, it's by far not guaranteed.

SELECT  *
FROM    table

most probably will use TABLE SCAN which does not use primary key at all.

You can use a hint:

SELECT  /*+ INDEX(pk_index_name) */
        *
FROM    table

, but even in this case the ordering is not guaranteed: if you use Enterprise Edition, the query may be parallelized.

This is a problem, since ORDER BY cannot be used in a SELECT clause subquery and you cannot write something like this:

SELECT  (
        SELECT  column
        FROM    table
        WHERE   rownum = 1
        ORDER BY
                other_column
        )
FROM    other_table
link|flag
Not a problem: SELECT DISTINCT FIRST_VALUE(column) OVER (ORDER BY other_column) FROM table; – Jeffrey Kemp May 25 at 2:56
@Jeffrey: it's possible, but the subquery will select all FIRST_VALUE's and HASH UNIQUE them. This will kill all performance it the subquery returns lots of rows. – Quassnoi May 25 at 10:51
vote up 2 vote down

No, ordering is never guaranteed unless you use an ORDER BY.

The order that rows are fetched is dependent on the access method (e.g. full table scan, index scan), the physical attributes of the table, the logical location of each row within the table, and other factors. These can all change even if you don't change your query, so in order to guarantee a consistent ordering in your result set, ORDER BY is necessary.

link|flag
vote up 0 vote down

It depends on your DB and also it depends on indexed fields.

For example, in my table Users every user has unique varchar(20) field - login, and primary key - id.

And "Select * from users" returns rowset ordered by login.

link|flag
vote up 0 vote down

If you desire specific ordering then declare it specifically using ORDER BY.

What if the table doesn't have primary key?

link|flag
If the table doesn't have a primary key, you have other problems than the order in which the data is returned. – Jonathan Leffler May 5 at 13:58
totally, but it doesn't stop people from designing tables badly! – fallenidol May 5 at 14:55
vote up 0 vote down

If you want your results in a specific order, always specify an order by

link|flag

Your Answer

Get an OpenID
or

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