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

From Ivan Sergio Borgonovo
Subject Re: referencing to "computed columns" in where clause
Date
Msg-id 20080129184950.19999212@webthatworks.it
Whole thread Raw
In response to Re: referencing to "computed columns" in where clause  (Sam Mason <sam@samason.me.uk>)
Responses Re: referencing to "computed columns" in where clause  (Sam Mason <sam@samason.me.uk>)
List pgsql-general
On Tue, 29 Jan 2008 17:17:39 +0000
Sam Mason <sam@samason.me.uk> wrote:

> 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;

It risk to be much harder to rewrite for dumber DB than repeating the
"complicated expression".

Does it come with some extra cost/improvement in term of performance
compared to:
- repeating the code of "complicated expression"
- put it in a function with the proper "attributes" (I'd say
IMMUTABLE in the above case)

I've some argument for all cases but it should depend on the
implementation.

thanks

--
Ivan Sergio Borgonovo
http://www.webthatworks.it


pgsql-general by date:

Previous
From: Sam Mason
Date:
Subject: Re: referencing to "computed columns" in where clause
Next
From: Richard Broersma Jr
Date:
Subject: Re: referencing to "computed columns" in where clause