Re: ALL() question

Поиск
Список
Период
Сортировка
От hubert depesz lubaczewski
Тема Re: ALL() question
Дата
Msg-id 20071114133116.GA10440@depesz.com
обсуждение исходный текст
Ответ на ALL() question  (Julien Cigar <jcigar@ulb.ac.be>)
Ответы Re: ALL() question
Список 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 по дате отправления:

Предыдущее
От: Richard Huxton
Дата:
Сообщение: Re: ALL() question
Следующее
От: Julien Cigar
Дата:
Сообщение: Re: ALL() question