Re: eliminating records not in (select id ... so SLOW?

Поиск
Список
Период
Сортировка
От Daniel Verite
Тема Re: eliminating records not in (select id ... so SLOW?
Дата
Msg-id df6405c9-c07e-4a72-ba4c-caa66b1756d1@mm
обсуждение исходный текст
Ответ на Re: eliminating records not in (select id ... so SLOW?  (Ivan Sergio Borgonovo <mail@webthatworks.it>)
Список pgsql-general
    Ivan Sergio Borgonovo wrote:

> But what if I *really* had to execute that query?
> Any other magic I could play to speed it up?

A trick that is sometimes spectacularly efficient is to rewrite the
query to use an outer join instead of NOT IN.

Try:

DELETE FROM table1 WHERE id IN
 (SELECT table1.id FROM table1 LEFT JOIN table2 ON table1.id=table2.id
WHERE table2.id IS NULL)


 Best regards,
--
 Daniel
 PostgreSQL-powered mail user agent and storage:
http://www.manitou-mail.org

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

Предыдущее
От: Ivan Sergio Borgonovo
Дата:
Сообщение: function definition and "entity"
Следующее
От: Marc Cuypers
Дата:
Сообщение: Re: Postgresql not using an index