Re: Seemingly inconsistent ORDER BY behavior

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Richard Hipp <drh(at)sqlite(dot)org>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Seemingly inconsistent ORDER BY behavior
Date: 2013-08-14 18:56:09
Message-ID: 12023.1376506569@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Richard Hipp <drh(at)sqlite(dot)org> writes:
> There are, of course, many ways to resolve the ambiguity (such as using a
> unique label for the result column, or by saying "t1.m" instead of just "m"
> when you mean the column of the table). But that is not really the point
> here. The question is, how should symbolic names in the ORDER BY clause be
> resolved? Should column names in the source table take precedence over
> result column name, or should it be the other way around?

Our interpretation is that a bare column name ("ORDER BY foo") is resolved
first as an output-column label, or failing that as an input-column name.
However, as soon as you embed a name in an expression, it will be treated
*only* as an input column name.

The SQL standard is not a lot of help here. In SQL92, the only allowed
forms of ORDER BY arguments were an output column name or an output column
number. SQL99 and later dropped that definition (acknowledging that they
were being incompatible) and substituted some fairly impenetrable verbiage
that seems to boil down to allowing input column names that can be within
expressions. At least that's how we've chosen to read it. Our current
behavior is a compromise that tries to support both editions of the spec.

regards, tom lane

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Richard Hipp 2013-08-14 19:50:15 Re: Seemingly inconsistent ORDER BY behavior
Previous Message Scott Marlowe 2013-08-14 18:50:52 Re: Seemingly inconsistent ORDER BY behavior