I'd like to calculate a MAX() value for a column. What's the proper way to do this in sqlalchemy while preserving database independence?
You can find aggregate functions in:
from sqlalchemy import func
func.avg(...)
func.sum(...)
func.max(...)
In 0.5 you can use an ORM query like a select:
session.query(func.max(Table.column))
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With