我有一个自我引用表,如下所示:
class Employee(Base):
__tablename__ = "t_employee"
id = sa.Column(BigInteger, sa.Sequence('%s_id_seq' % __tablename__), primary_key=True, nullable=False)
manager_id = sa.Column(BigInteger, sa.ForeignKey("t_employee.id", ondelete='SET NULL'))
我想选择依赖于它们排序的所有行(就像metadata.sorted_tables对表一样)。 例如 - 每位经理都应该来到他的员工面前
感谢任何帮助。