Re: searching array

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: searching array
Дата
Msg-id 10723.1129575039@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: searching array  (Matthew Peter <survivedsushi@yahoo.com>)
Ответы Re: searching array  (Matthew Peter <survivedsushi@yahoo.com>)
Re: searching array  (Matthew Peter <survivedsushi@yahoo.com>)
Список pgsql-general
Matthew Peter <survivedsushi@yahoo.com> writes:
> Shouldn't >= also return Carols records since she
> contains records GREATER THAN 10000?

You seem to be reading the construct backwards.

    x >= ALL (array)

is true if x >= every member of the array.  This is clearly false
for x = 10000 and array = {20000, 25000, 25000, 25000} ... in fact,
x isn't >= any of those members.

            regards, tom lane

В списке pgsql-general по дате отправления:

Предыдущее
От: Douglas McNaught
Дата:
Сообщение: Re: Problem using start transaction in nested transactions.
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Planner regression in 8.0.x ?