Re: Add Missing From?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Add Missing From?
Дата
Msg-id 14740.1092063294@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Add Missing From?  (Harald Fuchs <hf0722x@protecting.net>)
Список pgsql-hackers
Harald Fuchs <hf0722x@protecting.net> writes:
> Actually, MySQL supports two different syntaxes for multi-table DELETEs:

> 1. DELETE t1,t2 FROM t1,t2,t3 WHERE t1.id=t2.id AND t2.id=t3.id;
>    (introduced in MySQL 4.0.0)

> 2. DELETE FROM t1,t2 USING t1,t2,t3 WHERE t1.id=t2.id AND t2.id=t3.id;
>    (introduced in MySQL 4.0.2)

Yeah.  I ignored the first, as being so stupid that even the MySQL guys
soon realized what a bad idea it was ;-)
        regards, tom lane


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

Предыдущее
От: Jan Wieck
Дата:
Сообщение: Re: Add Missing From?
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Analyze using savepoints?