SQLAlchemy 中的多对多关系
考虑这个多对多关系表。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论