Since joining is not allowed on "delete" queries in Peewee, what is the best way to delete all records in table_2 that match a specific condition in related table_1?
Using a simple example, I want to achieve the equivalent of this:
DELETE message.*
FROM message
JOIN user ON message.from_user_id = user.id
WHERE user.name = "Joe";
delete a from a,b where a.field1=b.field2 where ...
type of query – Matless