Re: [sqlalchemy] correlating related deletes

2014-06-20 Thread Jonathan Vanasco
thanks! -- 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.

[sqlalchemy] correlating related deletes

2014-06-19 Thread Jonathan Vanasco
Due to a business requirement and an odd distribution of data / performance issue, my database currently has 2 tables which are inter-related : class Relationship(): id_a = int ,references table_a(id) id_b = int, references table_b(id) relationship_id = int,

Re: [sqlalchemy] correlating related deletes

2014-06-19 Thread Mike Bayer
On 6/19/14, 8:02 PM, Jonathan Vanasco wrote: Due to a business requirement and an odd distribution of data / performance issue, my database currently has 2 tables which are inter-related : class Relationship(): id_a = int ,references table_a(id) id_b = int, references