Re: ALL() question - Mailing list pgsql-sql

From hubert depesz lubaczewski
Subject Re: ALL() question
Date
Msg-id 20071114133116.GA10440@depesz.com
Whole thread Raw
In response to ALL() question  (Julien Cigar <jcigar@ulb.ac.be>)
Responses Re: ALL() question  (Julien Cigar <jcigar@ulb.ac.be>)
List pgsql-sql
On Wed, Nov 14, 2007 at 02:39:02PM +0100, Julien Cigar wrote:
> With the following I got a syntax error:
> select specimen_id 
> from specimen_test_bits 
> where test_bit_id = all(1,2,3,4);

where test_bit_id in (1,2,3,4)
group by specimen_id
having count(distinct test_bit_id) = 4;

depesz

-- 
quicksil1er: "postgres is excellent, but like any DB it requires a
highly paid DBA.  here's my CV!" :)
http://www.depesz.com/ - blog dla ciebie (i moje CV)


pgsql-sql by date:

Previous
From: Richard Huxton
Date:
Subject: Re: ALL() question
Next
From: Julien Cigar
Date:
Subject: Re: ALL() question