Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我做了一个简单的服务,您可以在其中发布行,其他人可以对其进行评分。
我希望它按评级排序,就像现在一样,然后按创建时间排序。这将导致顶部的评分高于 0。其中第一个将是最新的。
我的 SQL 结束如下:
ORDER BY d.rating DESC, d.created DESC
...但它并没有给我想要的结果。我错过了什么?
你会使用:
ORDER BY d.rating, d.created DESC