Re: Argument type list - Mailing list pgsql-general

From Erik Jones
Subject Re: Argument type list
Date
Msg-id A5002FF7-C9CB-4F52-BC78-60506D8B31F1@myemma.com
Whole thread Raw
In response to Re: Argument type list  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Argument type list  ("Gustavo Tonini" <gustavotonini@gmail.com>)
List pgsql-general
On Aug 23, 2007, at 1:27 PM, Tom Lane wrote:

> Erik Jones <erik@myemma.com> writes:
>> On Aug 23, 2007, at 11:56 AM, Gustavo Tonini wrote:
>>> I want to create a function that receive a list argument and filter
>>> data with IN operator. Example:
>
>> CREATE OR REPLACE FUNCTION public.ffoo(list sometype[]) RETURNS VOID
>
> this is right ...
>
>>   execute 'select * from foo where foo_column::text in (' ||
>> array_to_string(list, ',') || ');';
>
> this is pretty horrid.  Use = ANY(array) instead of trying to
> construct
> an IN on the fly.
>
>     select * from foo where foo_column = any(list)

Yes, I always forget about using ANY.  Thx.

Erik Jones

Software Developer | Emma®
erik@myemma.com
800.595.4401 or 615.292.5888
615.292.0777 (fax)

Emma helps organizations everywhere communicate & market in style.
Visit us online at http://www.myemma.com



pgsql-general by date:

Previous
From: Bill Moran
Date:
Subject: Re: Apache + PHP + Postgres Interaction
Next
From: "Joshua D. Drake"
Date:
Subject: Re: PostgreSQL vs Firebird feature comparison finished