support for deletion via multiple table query when synchronize_session=False

Issue #1532 resolved
Former user created an issue

Is this not something that could be enabled?

Comments (2)

  1. Mike Bayer repo owner

    the issue is not really the synchronize session part, its that the SQL expression language doesn't support DELETE with multiple FROM clauses. Its not standard SQL. only MySQL supports it, and PG kind of supports it via their "USING" extension. In that sense this ticket is pretty much a dupe of #959.

    as an aside, the same effect as DELETE..FROM multiple tables can be achieved using IN or EXISTS in the WHERE clause of the DELETE.

  2. Log in to comment