如何通过排序获取查询结果顶部的某个值?

发布于 2024-12-11 23:53:56 字数 405 浏览 0 评论 0原文

我有一个表,状态列

CREATE TABLE movies
(
id int NOT NULL AUTO_INCREMENT,
title varchar(100) NOT NULL default '',
status int NOT NULL
);

状态可能在 1 到 4 之间 我想按状态对结果进行排序,

我可以轻松地按 status ascdesc 对查询进行排序,并获取包含 1 和 4 的行值在顶部

$sql = "SELECT * FROM tbl order by `status` ASC";

,但我怎样才能在结果顶部得到 2 和 3 呢?

i have table with status column

CREATE TABLE movies
(
id int NOT NULL AUTO_INCREMENT,
title varchar(100) NOT NULL default '',
status int NOT NULL
);

status could be between 1 and 4
and i want to sort the result by status

i can easily sort my query by status asc and desc and get the rows with 1 and 4 as value on the top

$sql = "SELECT * FROM tbl order by `status` ASC";

but how can i get 2 and 3 on the top of result ?

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

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

发布评论

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

评论(3

伤痕我心 2024-12-18 23:53:56
select *
from tbl
order by case when status in (2, 3) then 0 else 1 end, 
    `status`
select *
from tbl
order by case when status in (2, 3) then 0 else 1 end, 
    `status`
过潦 2024-12-18 23:53:56
SELECT * FROM tbl where status IN (2,3) order by `status` ASC
UNION
SELECT * FROM tbl where status IN (1,4) order by `status` ASC
SELECT * FROM tbl where status IN (2,3) order by `status` ASC
UNION
SELECT * FROM tbl where status IN (1,4) order by `status` ASC
盗心人 2024-12-18 23:53:56

您可以使用 CASE (作为 RedFilter 的答案)或 FIELD() 函数:

SELECT * 
FROM tbl 
ORDER BY FIELD(status, 2, 3, 1, 4)    --- the order you prefer

You can use CASE (as RedFilter's answer) or the FIELD() function:

SELECT * 
FROM tbl 
ORDER BY FIELD(status, 2, 3, 1, 4)    --- the order you prefer
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文