Re: Need to overcome UNION / ORDER BY restriction - Mailing list pgsql-sql

From Tom Lane
Subject Re: Need to overcome UNION / ORDER BY restriction
Date
Msg-id 26825.1064858799@sss.pgh.pa.us
Whole thread Raw
In response to Need to overcome UNION / ORDER BY restriction  ("Timo" <siroco@suomi24.fi>)
List pgsql-sql
"Timo" <siroco@suomi24.fi> writes:
> SELECT * from foo where priority = 1 order by seniority
>     union select * from foo where priority > 1 order by seniority, priority
> but this gives parse error because of the restrictions with ORDER BY and
> UNION (I suppose..)

You'd need to parenthesize:

(SELECT * from foo where priority = 1 order by seniority)
UNION ALL
(select * from foo where priority > 1 order by seniority, priority)

Otherwise the ORDER BY is considered to apply to the whole UNION result
(it's effectively got lower binding priority than the UNION).  Note also
that you *must* use UNION ALL, else UNION will attempt to eliminate
duplicates, and mess up the sort order while at it.

See also Bruno's solution nearby.  Not sure which of these approaches
would be faster; try both.
        regards, tom lane


pgsql-sql by date:

Previous
From: Franco Bruno Borghesi
Date:
Subject: Re: SQL Syntax problem
Next
From: Tomasz Myrta
Date:
Subject: Re: Problems to be solved as soon as possible