6
SQLAlchemy ENCOMENDA POR DESCIDA?
Como posso usar ORDER BY descendingem uma consulta SQLAlchemy como a seguir? Esta consulta funciona, mas os retorna em ordem crescente: query = (model.Session.query(model.Entry) .join(model.ClassificationItem) .join(model.EnumerationValue) .filter_by(id=c.row.id) .order_by(model.Entry.amount) # This row :) ) Se eu tentar: .order_by(desc(model.Entry.amount)) então eu recebo: NameError: global name 'desc' is not defined.
424
python
sqlalchemy