Re: ANY for Array value check - Mailing list pgsql-sql

From Jasen Betts
Subject Re: ANY for Array value check
Date
Msg-id isveae$knm$1@reversiblemaps.ath.cx
Whole thread Raw
In response to ANY for Array value check  (Emi Lu <emilu@encs.concordia.ca>)
List pgsql-sql
On 2011-06-10, Emi Lu <emilu@encs.concordia.ca> wrote:
> Good morning,
>
> String array compare command, I forgot how to do it.
>
> E.g.,
> create table z_drop(id varchar[]);
> insert into z_drop values('{"a1", "a2", "b1", "b2", "b3"}');
>
> I'd like to do:
>
> select * from z_drop where id = any('a1', 'b1');

use the array overlap operator:

select * from z_drop where   id  &&  ARRAY['a1'::varchar, 'b1'];


If you define the column as text[] instead of varchar you don't need
the ::varchar cast above.  there's no postgres reason to prefer
(unbounded) varchar to text. 

-- 
⚂⚃ 100% natural



pgsql-sql by date:

Previous
From: Samuel Gendler
Date:
Subject: Re: Returning a set of dates
Next
From: Leif Biberg Kristensen
Date:
Subject: Subselects not allowed?