MySQL 自定义订单

发布于 2024-09-16 09:25:48 字数 211 浏览 2 评论 0原文

我有一个表,我从一个名为parent 的无符号整数类型的列中选择数据。

它有从 0 到 12 的数字。

我想按父级 asc 从表顺序中 select *,但有一个例外:将 0 放在 select 的末尾,这样它就像 1 ,2,3,4,5,6,7,8,9,0

请问这可以通过 MySQL 中的单个选择实现吗?

I have a table that I select data from with a column called parent that's of unsigned integer type.

It has numbers from 0 to 12.

I want to select * from table order by parent asc, but with one exception: place the 0 at the end of the select so it would be like 1,2,3,4,5,6,7,8,9,0.

Is this possible with a single select in MySQL please?

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

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

发布评论

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

评论(2

顾忌 2024-09-23 09:25:48

我会做这样的事情:

select * 
from your_table 
order by (parent != 0) desc, parent asc; 

I would do something like this:

select * 
from your_table 
order by (parent != 0) desc, parent asc; 
秋意浓 2024-09-23 09:25:48
select * 
from table 
order by case when parent is 0 then 1 else 0 end, 
    parent asc
select * 
from table 
order by case when parent is 0 then 1 else 0 end, 
    parent asc
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文