Changes between Initial Version and Version 1 of Ticket #28787, comment 5
- Timestamp:
- Mar 14, 2018, 10:42:46 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28787, comment 5
initial v1 2 2 > This doesn't look to be a bug in Django. This is a more of MySQL query parser bug. 3 3 4 This is nota query parser bug but a documented limitation of [https://dev.mysql.com/doc/refman/5.7/en/subquery-errors.html MySQL]:4 This is does not look like a query parser bug but a documented limitation of [https://dev.mysql.com/doc/refman/5.7/en/subquery-errors.html MySQL]: 5 5 6 6 > You can use a subquery for assignment within an UPDATE statement because subqueries are legal in UPDATE and DELETE statements as well as in SELECT statements. However, you cannot use the same table (in this case, table t1) for both the subquery FROM clause and the update target. … … 15 15 > }}} 16 16 17 Though neither mentions the use of an INNER JOIN 17 18 19