Re: Select distinct and order by. - Mailing list pgsql-sql

From Tom Lane
Subject Re: Select distinct and order by.
Date
Msg-id 25191.995385653@sss.pgh.pa.us
Whole thread Raw
In response to Select distinct and order by.  (Carlos <carlos@solaria-mediterranea.com>)
List pgsql-sql
Carlos <carlos@solaria-mediterranea.com> writes:
> Select distinct field1, field2 from table1 order by field3;

> The value return by PQresultErrorMessage is:

> For SELECT DISTINCT, ORDER BY expressions must appear in target list

> Whatever this query works fine in postgresql 6.5.3.

> Is correct this query and so there was a bug on 6.5.3 or there is a bug
> on the new versions?.

6.5 was in error to accept that query.  The problem with it is: which
value of field3 should be used to sort, if multiple rows with the same
field1/field2 are being collapsed together?  The results aren't
well-defined.

You can probably accomplish what you want in a slightly better-defined
way with SELECT DISTINCT ON.  See the SELECT reference page.

> Also in certains situations (in versions 7.0.x) this query fails from
> libpq:

"Fails" how?
        regards, tom lane


pgsql-sql by date:

Previous
From: Tom Lane
Date:
Subject: Re: epoch to show millseconds
Next
From: "Kapil Tilwani"
Date:
Subject: Fw: Query Optimisation required