From: | Stephan Szabo <sszabo(at)megazone(dot)bigpanda(dot)com> |
---|---|
To: | Cindy <ctmoore(at)uci(dot)edu> |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: question about a select |
Date: | 2003-10-09 22:25:27 |
Message-ID: | 20031009151156.H74915@megazone.bigpanda.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On Thu, 9 Oct 2003, Cindy wrote:
> Stephan Szabo writes:
> >On Thu, 9 Oct 2003, Cindy wrote:
> >> Text=# select distinct on (y_level) y_level, byteloc from
> >> citations_by_level where aid=543 and wid=1 order by byteloc;
> >> ERROR: SELECT DISTINCT ON expressions must match initial ORDER BY
> >> expressions
> >
> >Maybe something like:
> >
> >select y_level from (select distinct on (y_level) y_level,
> >byteloc from citations_by_level where aid=543 and wid=1) tab order by
> >byteloc;
>
> Hm...this seems to pick out the y_level with the largest byteloc
> associated with it...I need the y_level with the smallest byteloc and
> then sorted by that...lemme play this, but any other suggestions also
> welcomed...
I think an order by y_level, byteloc in the subquery might give you the
ordering you want for the distinct on step, and then the outer order by
will order the y_levels by their respective bytelocs.
From | Date | Subject | |
---|---|---|---|
Next Message | jearl | 2003-10-09 22:25:40 | Re: Response from MySql AB (Re: Humor me: Postgresql vs. |
Previous Message | tj | 2003-10-09 22:17:03 | simple remote user access question - pg_hda.conf |