From: | Gary Stainburn <gary(dot)stainburn(at)ringways(dot)co(dot)uk> |
---|---|
To: | pgsql-sql(at)postgresql(dot)org |
Subject: | Re: order by question |
Date: | 2005-03-09 14:06:11 |
Message-ID: | 200503091406.11125.gary.stainburn@ringways.co.uk |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
On Wednesday 09 March 2005 1:06 pm, you wrote:
> Gary Stainburn wrote:
> > Hi folks.
> >
> > I seem to remember somewhere being shown how to bump specific rows
> > to the top of a list; something along the lines of:
> >
> > select c_id as key, c_des as value from customers order by c_id =
> > 7, c_id = 160, value;
>
> Looks roughly right.
>
> SELECT * FROM foo ORDER BY not(a=6),not(a=4),a;
> a | b | c
> ---+------+-----
> 6 | ccc | BBB
> 4 | aaa | BBB
> 1 | aaa | AAA
> 2 | zxxx | AAA
> 3 | ccc | ZZZ
> 5 | zxxx | BBB
> (6 rows)
>
> Alternatively: (a<>6),(a<>4),a
Although this does exactly what I want, at first glance it should do
exactly the oposite.
I'm guessing that for each line it evaluates
not (a=6) 0 for true else 1
not (a=4) 0 for true else 1
everything else
--
Gary Stainburn
This email does not contain private or confidential material as it
may be snooped on by interested government parties for unknown
and undisclosed purposes - Regulation of Investigatory Powers Act, 2000
From | Date | Subject | |
---|---|---|---|
Next Message | Bruno Wolff III | 2005-03-09 14:19:08 | Re: interval +variable |
Previous Message | Achilleus Mantzios | 2005-03-09 13:48:38 | Re: order by question |