gpt4 book ai didi

python - Sqlalchemy : association table for many-to-many relationship between template_id and department. 如何删除关系?

转载 作者:行者123 更新时间:2023-11-29 10:47:47 27 4
gpt4 key购买 nike

Department = models.department.Department

association_table = Table('template_department', models.base.Base.instance().get_base().metadata,
Column('template_id', Integer, ForeignKey('templates.id')),
Column('department_id', Integer, ForeignKey('departments.id')))


class Template(models.base.Base.instance().get_base()):

__tablename__ = 'templates'


id = Column(Integer, primary_key=True)
tid = Column(String(7), unique=True)
....

departments = relationship('Department', secondary=association_table)

我正在尝试删除许多 template_id 和部门之间的关系,但我无法真正提出执行此操作的查询。有什么方法可以使用 Sqlalchemy 来做到这一点吗?

最佳答案

在 MySQL 中您可以使用 row constructorsIN-operatorassociation_table 中删除与这些对匹配的行。例如,如果您有 template_id、department_id 对的列表,例如:

to_remove = [(1, 1), (2, 2), (3, 3), ...]

那么你就可以

from sqlalchemy import tuple_

stmt = association_table.delete().\
where(tuple_(association_table.c.template_id,
association_table.c.department_id).in_(to_remove))

session.execute(stmt)
...

请注意,这会绕过正常的 ORM 簿记,因此 session 中存在的实例现在可能包含过时的数据。如果您打算立即提交并在需要时重新加载数据,这不是问题。

关于python - Sqlalchemy : association table for many-to-many relationship between template_id and department. 如何删除关系?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44258545/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com