Re: IN vs EXISTS equivalence

Поиск
Список
Период
Сортировка
От Gregory Stark
Тема Re: IN vs EXISTS equivalence
Дата
Msg-id 87ej4vxp3l.fsf@oxford.xeocode.com
обсуждение исходный текст
Ответ на Re: IN vs EXISTS equivalence  (Decibel! <decibel@decibel.org>)
Ответы Re: IN vs EXISTS equivalence  (Decibel! <decibel@decibel.org>)
Список pgsql-hackers
"Decibel!" <decibel@decibel.org> writes:

> On Aug 8, 2008, at 3:23 PM, Tom Lane wrote:
>> * has no set operations (UNION etc), grouping, set-returning functions
>> in the SELECT list, LIMIT, or a few other funny cases
>
>
> Couldn't union/union all be treated as
>
> EXISTS(a)
> OR EXISTS(b)

Kind of confused by what you mean here. Can you give an example?

The usual transformation to consider with UNION is to transform

SELECT ... WHERE x OR y

into

SELECT ...WHERE x
UNION ALL
SELECT ...WHERE y AND NOT x

(modulo handling NULLs properly)

--  Gregory Stark EnterpriseDB          http://www.enterprisedb.com Ask me about EnterpriseDB's RemoteDBA services!


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

Предыдущее
От: "Jaime Casanova"
Дата:
Сообщение: Re: Column level privileges was:(Re: Extending grant insert on tables to sequences)
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: autovacuum and TOAST tables