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

FromJasen Betts
SubjectRe: ANY for Array value check
Date
Msg-id[email protected]
Whole thread Raw
In response toANY for Array value check  (Emi Lu <[email protected]>)
Listpgsql-sql
On 2011-06-10, Emi Lu <[email protected]> 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?