RE: [GENERAL] how to import "where exists(subquery)" EXISTS CONDITION performance?

Поиск
Список
Период
Сортировка
От Albe Laurenz
Тема RE: [GENERAL] how to import "where exists(subquery)" EXISTS CONDITION performance?
Дата
Msg-id A737B7A37273E048B164557ADEF4A58B50FEF519@ntex2010i.host.magwien.gv.at
обсуждение исходный текст
Ответ на how to import "where exists(subquery)" EXISTS CONDITION performance?  (shili <shi_li_1992@163.com>)
Список pgsql-general
shili wrote:
> I had saw this sentence: SQL statements that use the EXISTS condition in PostgreSQL are very inefficient
> since the sub-query is RE-RUN for EVERY row in the outer query's table. There are more efficient ways
> to write most queries, that do not use the EXISTS condition.
> So,I want to know how PostgreSQL to implement the EXISTS condition? Is that sentence true?
> and,if that is true,are there any methods to import the performance of the EXISTS condition?

You mean "improve", not "import", right?

If you try it out you will find that PostgreSQL often executes an EXISTS clause as a join,
so no, SQL statements using EXISTS are not necessarily slow.

Still it is often a good idea to use an explicit join instead of EXISTS if possible.

Yours,
Laurenz Albe

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

Предыдущее
От: Kaushal Shriyan
Дата:
Сообщение: Comparing two postgres dump files.
Следующее
От: John R Pierce
Дата:
Сообщение: Re: how to import "where exists(subquery)" EXISTS CONDITION performance?