Re: order by a "select as" determined by case statement

From: Stephan Szabo <sszabo(at)megazone23(dot)bigpanda(dot)com>
To: FatTony <fattony(at)comcast(dot)net>
Cc: <pgsql-sql(at)postgresql(dot)org>
Subject: Re: order by a "select as" determined by case statement
Date: 2002-12-06 18:16:17
Message-ID: 20021206101155.K18245-100000@megazone23.bigpanda.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Fri, 6 Dec 2002, FatTony wrote:

> I'm not a db guru by any means so please forgive me if this has an easy
> solution.
>
> Scenario:
>
> Want to sort by an alias for SELECT AGE(). Problem is the timestamps for
> the SELECT AGE will be determined by the value of another column, thus
> the use of CASE.
>
> What I thought would work.
>
> SELECT tblticket.ticketid,tblstatus.statusname,
> CASE WHEN tblstatus.statusname = 'Closed'
> THEN (SELECT AGE(tblticket.ticketclosed,tblticket.ticketcreated) as
> ticketage)
> ELSE (SELECT AGE(CURRENT_TIMESTAMP,tblticket.ticketcreated) as
> ticketage)
> END
> FROM tblticket CROSS JOIN tblstatus
> WHERE (tblticket.reasonid = 2) AND blah, blah, blah
> ORDER BY ticketage ASC
>
> CASE apparently completely ignores the ticketage alias. Anyone know how
> to get around this?

Probably what you want is:
case when ...
then ...
else ...
end as ticketage

The aliases on the result columns of the subquery don't translate into the
alias of the case expression, but you can give the case expression an
alias instead.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message D'Arcy J.M. Cain 2002-12-06 19:03:02 SELECT FOR UPDATE locks whole table
Previous Message FatTony 2002-12-06 18:05:34 order by a "select as" determined by case statement