Changes between Initial Version and Version 1 of Ticket #28787, comment 5


Ignore:
Timestamp:
Mar 14, 2018, 10:42:46 AM (6 years ago)
Author:
Oskar Persson

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28787, comment 5

    initial v1  
    22> This doesn't look to be a bug in Django. This is a more of MySQL query parser bug.
    33
    4 This is not a query parser bug but a documented limitation of [https://dev.mysql.com/doc/refman/5.7/en/subquery-errors.html MySQL]:
     4This 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]:
    55
    66> 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.
     
    1515> }}}
    1616
     17Though neither mentions the use of an INNER JOIN
    1718
     19
Back to Top