MySQL sort order by array value(MySQL按数组值排序)
问题描述
我需要运行一个 MySQL 查询,其中的顺序由数组值决定.
I need to run a MySQL query where the order is determined by an array value.
我的数组是可变的,但数组中的值对应于我的数据库表中名为ID"的字段,因此我希望以 ID 顺序 9、1、4 返回结果.
My array is variable but the values in the array correspond to a field in my DB table called 'ID' so I want the result to be returned in the ID order 9, 1, 4.
Array ( [0] => 9 [1] => 1 [2] => 4 )
这在 MySQL 中是否可行,或者是否可以使用数组对 MySQL $result 进行排序?您可以假设唯一返回的值是数组中的值.
Is this possible in MySQL or would it be possible to sort the MySQL $result using the array after? You can assume the only values being returned are those in the array.
推荐答案
ORDER BY field(id, 9, 1, 4);
http://dev.mysql.com/doc/refman/5.5/en/string-functions.html#function_field
这篇关于MySQL按数组值排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySQL按数组值排序


- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- SQL 临时表问题 2022-01-01
- 更改自动增量起始编号? 2021-01-01