Re: Selecting rows with "static" ordering

From: "Peter Childs" <peterachilds(at)gmail(dot)com>
To:
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Selecting rows with "static" ordering
Date: 2007-04-27 04:02:19
Message-ID: a2de01dd0704262102o3fd14c7r7700a0f20f209e27@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On 27/04/07, Aaron Bono <postgresql(at)aranya(dot)com> wrote:
> On 4/26/07, Steve Midgley <public(at)misuse(dot)org> wrote:
> > So take
> > for example this foreign application variable:
> >
> > ids = "3,2,5,1,4"
> >
> > The application then executes this sql:
> >
> > select * from table where id in (3,2,5,1,4)
> >
> > As-is, of course, the above query will return the 5 records in a
> > semi-random (i.e. unpredictable/unreliable) order. And I don't want to
> > just "order by id" - I want to "order by id(3,2,5,1,4)" (if you see
> > what I mean)
> >
> >
>
> select *
> from table
> where id in (3, 2, 5, 1, 4)
> order by
> case when (id = 3) then 1
> when (id = 2) then 2
> when (id = 5) then 3
> when (id = 1) then 4
> when (id = 4) then 5
> else null
> end
> ;
>

could you not use the values statment of psql 8.2 hmmm

select * from table, values ((1,3),(2,2),(3,5),(4,1),(5,4)) as values
where values.id=table.second order by values.first;

never done it but I think it should work with a bit of playing arond...

Peter.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Dmitry Turin 2007-04-27 13:42:27 Re: Fwd: Re[2]: We all are looped on Internet: request + transport = invariant
Previous Message Aaron Bono 2007-04-27 00:46:58 Re: Selecting rows with "static" ordering