MySQL排序时如何排除某些值?

发布于 2024-12-06 14:59:54 字数 349 浏览 0 评论 0原文

我有一个这样的表:

id products_name sort
1   abc           0 
2   xyz           1
3   pqr           2
4   qwe           0

我想通过 sort 列对记录进行升序排序,但我不希望结果集中顶部带有 0 的行。
sort 列中具有 0 的行应位于结果集的底部,其余行应使用 sort 按升序排序 列。

我该怎么做?

I have a table like this:

id products_name sort
1   abc           0 
2   xyz           1
3   pqr           2
4   qwe           0

I want to sort records through the sort column and in ascending order, but I don't want the rows with 0 at the top in the result set.
The rows having 0 in the sort column should be at the bottom of the result set, and the rest of the rows should be sorted in ascending order using the sort column.

How do I do this?

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

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

发布评论

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

评论(2

柠檬心 2024-12-13 14:59:54

你可以尝试这样的事情:

ORDER BY IF(SORT=0, 999999999, SORT)

You could try something like:

ORDER BY IF(SORT=0, 999999999, SORT)
半城柳色半声笛 2024-12-13 14:59:54

您可以使用 ORDER BY IF 语句:

SELECT *
FROM table
ORDER BY IF(SORT = 0, 999999999, SORT)

或者可以使用 UNION ALL 语句来实现此目的:

(SELECT * FROM table WHERE sort > 0 ORDER BY sort)
UNION ALL
(SELECT * FROM table WHERE sort = 0)

You can use the ORDER BY IF statement:

SELECT *
FROM table
ORDER BY IF(SORT = 0, 999999999, SORT)

or you can use the UNION ALL statement to achieve this:

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