从其他模式中选择表

时间:2011-05-16 13:08:05

标签: sqlalchemy

1 个答案:

答案 0 :(得分:36)

您可以明确指定表的模式名称:

class AttributeConversion(Base)
    __tablename__ = 'attribute_conversion'
    __table_args__ = {'schema' : 'test'}

请参阅specifying-the-schema-name上的文档。