using SQLAlchemy 0.5.8 how do you run a max query?
i.e. Select max(id) from some_table
Select max(id) from some_table
I know this question is specifically about v0.5.8, but for anyone coming here from google 4 years later, func is now in sqlalchemy.sql.expression.
func
Example:
from sqlalchemy.sql.expression import func session.query(func.max(Table.column))