最佳答案
我如何使用ORDER BY descending
在SQLAlchemy查询如下?
这个查询是有效的,但是以升序返回它们:
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 :)
)
如果我试着:
.order_by(desc(model.Entry.amount))
然后我得到:NameError: global name 'desc' is not defined
。