Join tables in two databases using SQLAlchemy
问题 I am working with two MySQL Databases. I want to join a table from DB 1 with a table from DB2 in SQLAlchemy. I am using automap_base while creating data access layer in sqlalchemy as follows... class DBHandleBase(object): def __init__(self, connection_string='mysql+pymysql://root:xxxxxxx@localhost/services', pool_recycle=3600): self.Base_ = automap_base() self.engine_ = create_engine(connection_string, pool_recycle = pool_recycle) self.Base_.prepare(self.engine_, reflect=True) self.session_ =