Re: [sqlalchemy] SQLAlchemy query filter by field value in related table

2018-09-21 Thread Mike Bayer
On Fri, Sep 21, 2018 at 10:52 AM Алексанр Платонов wrote: > > Hi, with all due respect, I copy here the link to the question so as not to > duplicate information. > > https://stackoverflow.com/questions/52414329/sqlalchemy-query-filter-by-field-value-in-related-table the query I see: result =

[sqlalchemy] SQLAlchemy query filter by field value in related table

2018-09-21 Thread Алексанр Платонов
Hi, with all due respect, I copy here the link to the question so as not to duplicate information. https://stackoverflow.com/questions/52414329/sqlalchemy-query-filter-by-field-value-in-related-table Thank you for your participation and response. -- SQLAlchemy - The Python SQL Toolkit and

Re: [sqlalchemy] Bulk update & performance question

2018-09-21 Thread Simon King
On Thu, Sep 20, 2018 at 11:56 PM wrote: > > Hello, > > While looking for a good way to implement a bulk update to numerous rows of > the same table, I came across this performance example: > > session = Session(bind=engine) > for chunk in range(0, n, 1000): > customers =