hey guys,

can’t figure out how to properly construct sqla core delete() construct for 
something that should look like (I’m using MySQL):

DELETE FROM a USING a
JOIN b ON (a.id1 = b.id1)
JOIN c ON (a.id2 = c.id2)
WHERE . . .

I can write in it literal SQL and feed to the execute() of course but I was 
wondering if it’s possible to write it via table.delete() construct somehow.

—
Thanks,
Dima.

-- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sqlalchemy+unsubscr...@googlegroups.com.
To post to this group, send email to sqlalchemy@googlegroups.com.
Visit this group at http://groups.google.com/group/sqlalchemy.
For more options, visit https://groups.google.com/d/optout.

Reply via email to