Re: referencing to "computed columns" in where clause - Mailing list pgsql-general

From Sam Mason
Subject Re: referencing to "computed columns" in where clause
Date
Msg-id 20080129171739.GV18990@frubble.xen.chris-lamb.co.uk
Whole thread Raw
In response to referencing to "computed columns" in where clause  (Ivan Sergio Borgonovo <mail@webthatworks.it>)
Responses Re: referencing to "computed columns" in where clause  (Ivan Sergio Borgonovo <mail@webthatworks.it>)
List pgsql-general
On Tue, Jan 29, 2008 at 06:04:48PM +0100, Ivan Sergio Borgonovo wrote:
> select
>   case
>     when (a>3) then a*b
>     when (a<3) then a+b
>   end as pippo
> where pippo<12;

I've tended to do:

  SELECT *
  FROM (
    SELECT "complicated expression" AS pippo) x
  WHERE pippo  < 12;


  Sam

pgsql-general by date:

Previous
From: Ivan Sergio Borgonovo
Date:
Subject: referencing to "computed columns" in where clause
Next
From: Ivan Sergio Borgonovo
Date:
Subject: Re: referencing to "computed columns" in where clause