In Oracle, what is the the default ordering of rows for a select query if no "order by" clause is specified.
Is it
- the order in which the rows were inserted
- there is no default ordering at all
- none of the above.
|
In Oracle, what is the the default ordering of rows for a select query if no "order by" clause is specified. Is it
|
||||
|
|
According to Tom Kyte: "Unless and until you add "order by" to a query, you cannot say ANYTHING about the order of the rows returned. Well, short of 'you cannot rely on the order of the rows being returned'." See this question at asktom.com. As for ROWNUM, it doesn't physically exist, so it can't be "freed". ROWNUM is assigned after a record is retrieved from a table, which is why "WHERE ROWNUM = 5" will always fail to select any records. @ammoQ: you might want to read this AskTom article on GROUP BY ordering. In short:
|
|||||
|
|
There is no explicit default ordering. For obvious reasons, if you create a new table, insert a few rows and do a "select *" without a "where" clause, it will return the rows in the order they were inserted. But you should never ever rely on a default order happening. If you need a specific order, use an "order by" clause. For example, in Oracle versions up to 9i, doing a "group by" also caused the rows to be sorted by the group expression. In 10g, this behaviour does no longer exist! Upgrading Oracle installations has caused me some work because of this. |
|||||||||||||||
|
|
It has already been said that Oracle is allowed to give you the rows in any order it wants, when you don't specify an ORDER BY clause. Speculating what the order will be when you don't specify the ORDER BY clause is pointless. And relying on it in your code, is a "career limiting move". A simple example:
And this is only after a simple delete+insert. And there are numerous other situations thinkable. Parallel execution, partitions, index organised tables to name just a few. Bottom line, as already very wel said by ammoQ: if you need the rows sorted, use an ORDER BY clause. Regards, Rob. |
|||||||||
|
|
You absolutely, positively cannot rely on any ordering unless you specify The parallel execution mentioned by Rob van Wijk probably explains this. See also this doc. |
||||
|
|
|
Although, it should be rownnum (your #2), it really isn't guaranteed and you shouldn't trust it 100%. |
|||||
|
|
I believe it uses Oracle's hidden Rownum attribute. So your #1 is probably right assuming there were no deletes done that might have freed rownums for later use. EDIT: As others have said, you really shouldn't rely on this, ever. Besides deletes theres a lot of different conditions that can affect the default sorting behavior. |
|||||
|