Re: order is preserved by outer select? - Mailing list pgsql-general

From Richard Huxton
Subject Re: order is preserved by outer select?
Date
Msg-id 46973B9F.20301@archonet.com
Whole thread Raw
In response to order is preserved by outer select?  (Joshua N Pritikin <jpritikin@pobox.com>)
List pgsql-general
Joshua N Pritikin wrote:
> Here's another easy (stupid?) question:
>
>   SELECT data.* FROM (SELECT * FROM foo ORDER BY bar) AS data
>
> Will the returned rows still be ordered by bar?

In practice, for this precise query, yes.

However, embedding this into a larger query or adding a WHERE clause
could re-order the results. For example, if PG uses a hash anywhere
during the query you'll lose ordering.

More importantly, the specifications say that without an ORDER BY the
order of a result-set is undefined. So if the developers find it's more
efficient to destroy order they are free to do so. That means you might
upgrade and have your application stop working.

So - good practice says don't rely on ORDER BY except in the outermost
level of your query.

--
   Richard Huxton
   Archonet Ltd

pgsql-general by date:

Previous
From: Joshua N Pritikin
Date:
Subject: order is preserved by outer select?
Next
From: Gregory Stark
Date:
Subject: Re: One Large Table or Multiple DBs?