DELETE with JOIN syntax

Поиск
Список
Период
Сортировка
От Brian Wong
Тема DELETE with JOIN syntax
Дата
Msg-id e1c904a405072712282b1fbbfe@mail.gmail.com
обсуждение исходный текст
Ответы Re: DELETE with JOIN syntax  (Bruno Wolff III <bruno@wolff.to>)
Re: DELETE with JOIN syntax  (Stephan Szabo <sszabo@megazone.bigpanda.com>)
Список pgsql-general
I am currently migrating from MySQL to PostgreSQL and I have found
that some queries do not work. For instance,

DELETE t1 FROM t1 LEFT JOIN t2 USING (column_id) WHERE t2.column_id IS NULL;

works in MySQL. This works as expected even though the MySQL
documentation does not mention the option of having a table between
the keywords DELETE and FROM.

I am trying to achieve the same affect for PostgreSQL so I tried

DELETE FROM t1 LEFT JOIN t2 USING (column_id) WHERE t2.column_id IS NULL;

and it did not work. Can someone explain to me exactly what is wrong
with this syntax?
Is a table expression produced by the JOIN allowed for a DELETE?
Im thinking that this would not work because the table expression is
not a real table and it would not make sense for DELETE to accept such
a parameter. How can I rewrite this query to achieve the same affect?
Thanks.

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

Предыдущее
От: Richard Huxton
Дата:
Сообщение: Re: Upgrading from 7.1
Следующее
От: Bruno Wolff III
Дата:
Сообщение: Re: DELETE with JOIN syntax