Re: Include result of function call within WHERE clause in results

From: Dallas Morisette <p28flyer(at)gmail(dot)com>
To: pgsql-novice(at)postgresql(dot)org
Subject: Re: Include result of function call within WHERE clause in results
Date: 2009-05-17 14:16:17
Message-ID: A8E4CF0D-2EA0-4947-8D2C-8E4B201EDBCB@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Thanks, Adam. That worked, and makes some sense as well. Basically
create a temporary table with the function run on all elements
including the result of the function as a new field, then filter based
on that added column. If I'm limiting the set based on other
conditions I can put them in the sub-select statement to minimize the
number of function calls necessary.

Regards.
Dallas

On May 17, 2009, at 4:56 AM, Adam Ruth wrote:

> You can put the query into a sub-select:
>
> SELECT * from (SELECT field1, some_function() as field2 FROM
> my_table) T where T.field2 < some_number
>
>
>
>
> On 17/05/2009, at 10:44 AM, Dallas Morisette wrote:
>
>> Hi all -
>>
>> I need to select the rows of a table that satisfy a condition that
>> includes a function call, and I want to include the result of the
>> function call as a column in the resulting table. For example, this
>> pseudo-code produces the result I'm looking for:
>>
>> SELECT field1, some_function(...) FROM my_table
>> WHERE some_function(...) < some_number
>>
>> However, I would like to avoid calling the function in two places,
>> especially since embedded in the parameters to the function I have
>> another SELECT command. Not to mention it just looks messy...
>>
>> I've already tried the following without luck:
>>
>> SELECT field1, some_function(...) AS result FROM my_table
>> WHERE result < some_number
>>
>> Is there a way to cache the result of the function call so it can
>> be used in both places without two separate calls?
>>
>> Thanks in advance,
>> Dallas Morisette
>>
>> --
>> Sent via pgsql-novice mailing list (pgsql-novice(at)postgresql(dot)org)
>> To make changes to your subscription:
>> http://www.postgresql.org/mailpref/pgsql-novice
>

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Hartman, Matthew 2009-05-17 14:35:38 Installing PostgreSQL 8.3 and DBI-LINK on Windows.
Previous Message Michael Glaesemann 2009-05-17 14:15:38 Re: COUNT() BASED ON MULTIPLE WHERE CONDITIONS