mysql 语句中的计算用于评级

发布于 2024-09-13 09:21:49 字数 227 浏览 3 评论 0原文

我想按评级订购精选商品。有 2 个字段:rateup 和ratedown。我使用这些字段来计算一个数字并根据该数字对选择进行排序。可以在mysql中完成吗?我有一个像这样的查询,但这不起作用:

SELECT * FROM table ORDER BY (((9/rateup+ratedown)*rateup)+1) DESC

我怎样才能使这项工作有效,或者这是不可能的?

I want order a selection of items by the rating. There are 2 fields: rateup and ratedown. I use these fields to calculate a number and order the selection on that number. Can that be done in mysql? I have a querylike this, but this doesn't work:

SELECT * FROM table ORDER BY (((9/rateup+ratedown)*rateup)+1) DESC

How can I make this work or is this impossible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

反话 2024-09-20 09:21:49
Select *, (((9/rateup+ratedown)*rateup)+1) As Ord from Table WHERE published = 1 Order By Ord Desc

按要求添加了Where子句。

Select *, (((9/rateup+ratedown)*rateup)+1) As Ord from Table WHERE published = 1 Order By Ord Desc

added Where Clause as requested.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文