Re: Order by in Select

From: "Stephan Szabo" <sszabo(at)kick(dot)com>
To: "Bernie Huang" <bernie(dot)huang(at)ec(dot)gc(dot)ca>
Cc: <pgsql-sql(at)postgresql(dot)org>
Subject: Re: Order by in Select
Date: 2000-07-20 00:38:23
Message-ID: 010b01bff1e2$cfe02760$0c64010a@kick.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

> What can I add to the above sql statement so that is fetches the
> specified id first in a sorted list?
>
> eg: if $specified_id=5;
> I want: 5,5,5,1,2,3,3,4,4,4,6,6,7
>
> I could have done it in two different sql statements where one fetches
> specified_id and the other fetches and sorts others, but I want to be
> able to do it in one sql statement to reduce time.

Umm, maybe something like:
select id from table order by
case when id=$specified_id then <minimal value for type> else id end

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Nathan Young 2000-07-20 00:55:24 synchronizing databases
Previous Message Bernie Huang 2000-07-20 00:25:59 Order by in Select