Sqlalchemy:组和成员之间多对多关系的关联表。如何删除关系?

时间:2009-09-23 18:31:02

标签: sqlalchemy pylons

我设置了这些表:http://pastie.org/627764

...    
    # This is the association table for the many-to-many relationship between
    # groups and members - this is, the memberships.
    user_group_table = Table('user_group', metadata,
        Column('user_name', Integer, ForeignKey('user.user_name',
            onupdate="CASCADE", ondelete="CASCADE")),
        Column('group_name', Integer, ForeignKey('group.group_name',
            onupdate="CASCADE", ondelete="CASCADE"))
    )

    class Group(DeclarativeBase):

        __tablename__ = 'group'

        group_name = Column(Unicode(16), primary_key=True)

        users = relation('User', secondary=user_group_table, backref='groups')
...

我正在尝试删除一个用户和他的一个用户之间的关系,但我无法真正想出一个查询来做到这一点。有什么方法可以使用Sqlalchemy吗?

感谢您的时间。

1 个答案:

答案 0 :(得分:3)

您是说要从群组中删除用户?

# fetch the mapped classes
group = Session.query(Group).some_filters().one()
user = Session.query(User).some_filters().one()

# group.users is a list of all users in this group
# remove one and it will be removed from the DB
group.users.remove( user )
Session.commit()