Check a value in array

From: Marco Lazzeri <marcomail(at)noze(dot)it>
To: pgsql-sql(at)postgresql(dot)org
Subject: Check a value in array
Date: 2004-04-29 17:37:11
Message-ID: 1083260230.20352.7.camel@macbeth.intranet.noze.it
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hi all.

I have to check if a value is in an array.

I've got a date array in a table and I would like to perform queries
like:

SELECT * FROM table WHERE date IN dates_array;

I've tried using array_contains_date (contrib/array_iterator.sql)
function unsuccessfully:

SELECT array_contains_date(dates_array, date);
WARNING: plpgsql: ERROR during compile of array_contains_date near line
5. ERROR: missing .. at end of SQL expression

Anyone can help me?
Thanks,
Marco

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Rod Taylor 2004-04-29 17:56:47 Re: Check a value in array
Previous Message Josh Berkus 2004-04-29 17:23:58 Re: Use arrays or not?