Re: order is preserved by outer select?

Поиск
Список
Период
Сортировка
От Richard Huxton
Тема Re: order is preserved by outer select?
Дата
Msg-id 46973B9F.20301@archonet.com
обсуждение исходный текст
Ответ на order is preserved by outer select?  (Joshua N Pritikin <jpritikin@pobox.com>)
Список 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 по дате отправления:

Предыдущее
От: Joshua N Pritikin
Дата:
Сообщение: order is preserved by outer select?
Следующее
От: Gregory Stark
Дата:
Сообщение: Re: One Large Table or Multiple DBs?