this is a very basic series of joins which can be approached using the
techniques described in the ORM tutorial:
http://docs.sqlalchemy.org/en/rel_0_7/orm/tutorial.html#querying-with-joins .
the parenthesization of the joined tables within subqueries is also not needed
and these tables can be j
I have a MySQL database with the following structure and was hoping someone
could help me convert the SQL query below to SQLAlchemy.
*Database structure:*
*bottom:*
id
name
middle_id
*middle:*
id
name
top_id
*top:*
id
name
*Here are my model