postgresql – 多个order_by sqlalchemy/Flask

前端之家收集整理的这篇文章主要介绍了postgresql – 多个order_by sqlalchemy/Flask前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用的是Flask和sqlAlchemy。

假设我有一个包含字段“受欢迎程度”和“date_created”的用户模型。我想做以下查询

SELECT * FROM user ORDER BY popularity DESC,date_created DESC LIMIT 10

如何在sqlAlchemy中执行多个order_by?
对于单个,这是工作:

User.query.order_by(User.popularity.desc()).limit(10).all()

我应该添加另一个order_by吗?还是把我现在的order_by都流行和date_created?我希望受欢迎程度优先于date_created订购。

非常感谢你!

这应该工作
User.query.order_by(User.popularity.desc(),User.date_created.desc()).limit(10).all()
原文链接:https://www.f2er.com/postgresql/193126.html

猜你在找的Postgre SQL相关文章