]> granicus.if.org Git - postgresql/commit
Update DELETE FROM:
authorBruce Momjian <bruce@momjian.us>
Tue, 10 Aug 2004 17:30:47 +0000 (17:30 +0000)
committerBruce Momjian <bruce@momjian.us>
Tue, 10 Aug 2004 17:30:47 +0000 (17:30 +0000)
commitf7667e4cfaaed99d26bc4200fa98b2885e29080e
tree70b09f200b936da3e27678bd1f181376e4dbb73d
parent2c29664b6bfefa8f7a4cc994c92fcb53a2a17962
Update DELETE FROM:

< * Allow DELETE to handle table aliases for self-joins
> * Allow an alias to be provided for the target table in UPDATE/DELETE
276,279c276,282
<   There is no way to create a table alias for the deleted table for use
<   in the DELETE WHERE clause.  The agreed approach is to allow a USING
<   clause to specify additional tables.  UPDATE already has an optional
<   FROM clause for this purpose.
>   This is not SQL-spec but many DBMSs allow it.
>
> * Allow additional tables to be specified in DELETE for joins
>
>   UPDATE already allows this (UPDATE...FROM) but we need similar
>   functionality in DELETE.  It's been agreed that the keyword should
>   be USING, to avoid anything as confusing as DELETE FROM a FROM b.
doc/TODO