SQLAlchemy 中的多对多关系

发布于 2025-01-01 10:32:03 字数 329 浏览 1 评论 0原文

考虑这个多对多关系表。

content_tag = Table('content_tag', db.metadata,
    Column('tag_id', Integer, ForeignKey('tag.id'), primary_key=True),
    Column('content_id', Integer, ForeignKey('content.id'), primary_key=True)
)

如何编写查询来计算具有特定 tag_id 的所有此类记录的数量? 或者如何更新所有带有 key tag_id 的记录?

通用语法不起作用。

Consider this Many-to-Many relationships table.

content_tag = Table('content_tag', db.metadata,
    Column('tag_id', Integer, ForeignKey('tag.id'), primary_key=True),
    Column('content_id', Integer, ForeignKey('content.id'), primary_key=True)
)

How do I write a query to calculate the amount of all such records with a specific tag_id?
Or how to update all records with key tag_id?

The common syntax is not working.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文