Ordering by specific field value first(首先按特定字段值排序)
问题描述
我有一个包含 3 列的表格:
I have a table with 3 columns:
id | name | priority
--------------------
1 | core | 10
2 | core | 9
3 | other | 8
4 | board | 7
5 | board | 6
6 | core | 4
我想使用 priority
对结果集进行排序,但首先是那些具有 name=core
的行,即使优先级较低.结果应该是这样的
I want to order the result set using priority
but first those rows that have name=core
even if have lower priority. The result should look like this
id | name | priority
--------------------
6 | core | 4
2 | core | 9
1 | core | 10
5 | board | 6
4 | board | 7
3 | other | 8
推荐答案
还有 MySQL FIELD
函数.
There's also the MySQL FIELD
function.
如果您想对所有可能的值进行完整排序:
If you want complete sorting for all possible values:
SELECT id, name, priority
FROM mytable
ORDER BY FIELD(name, "core", "board", "other")
如果您只关心核心"是第一位的,而其他值无关紧要:
If you only care that "core" is first and the other values don't matter:
SELECT id, name, priority
FROM mytable
ORDER BY FIELD(name, "core") DESC
如果要先按核心"排序,其他字段按正常排序:
If you want to sort by "core" first, and the other fields in normal sort order:
SELECT id, name, priority
FROM mytable
ORDER BY FIELD(name, "core") DESC, priority
不过这里有一些警告:
首先,我很确定这是仅限 mysql 的功能 - 问题被标记为 mysql,但您永远不知道.
First, I'm pretty sure this is mysql-only functionality - the question is tagged mysql, but you never know.
其次,注意FIELD()
的工作原理:它返回值的基于一个的索引 - 在 FIELD(priority,"core")
,如果"core"是值,它会返回1.如果该字段的值不在列表中,则返回零.这就是为什么 DESC
是必要的,除非您指定所有可能的值.
Second, pay attention to how FIELD()
works: it returns the one-based index of the value - in the case of FIELD(priority, "core")
, it'll return 1 if "core" is the value. If the value of the field is not in the list, it returns zero. This is why DESC
is necessary unless you specify all possible values.
这篇关于首先按特定字段值排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:首先按特定字段值排序


基础教程推荐
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01