Re: [sqlalchemy] Re: UNION howto

2014-10-01 Thread jo
It works. Thanks a lot, Jonathan. j Jonathan Vanasco wrote: I asked a similar question a few days ago; it's still on the front page of the group. Mike replied to that and gave some details Your query would be something like: class A(Base): __tablenam

[sqlalchemy] Re: UNION howto

2014-10-01 Thread Jonathan Vanasco
I asked a similar question a few days ago; it's still on the front page of the group. Mike replied to that and gave some details Your query would be something like: class A(Base): __tablename__ = 'a' id = Column(Integer, primary_key=True)