如何在 mySQL 中定义自定义 ORDER BY 顺序

How to define a custom ORDER BY order in mySQL(如何在 mySQL 中定义自定义 ORDER BY 顺序)
本文介绍了如何在 mySQL 中定义自定义 ORDER BY 顺序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在 MySQL 中,我如何定义自定义排序顺序.

In MySQL how do I define a custom sorting order.

为了解释我想要什么考虑这张表:

To try to explain what I want consider this table:

ID  Language    Text
0   ENU         a
0   JPN         b
0   DAN         c       
1   ENU         d
1   JPN         e
1   DAN         f
2   etc...

这里我想返回按语言和升序 ID 排序的所有行,以便首先出现 Language = ENU,然后是 JPN,最后是 DAN.

here I want to return all rows sorted by Language and ascending ID so that Language = ENU comes first, then JPN and lastly DAN.

结果应该是:a,d,b,e,c,f 等

The result should be: a,d,b,e,c,f etc.

这可能吗?

推荐答案

MySQL 有一个方便的函数,叫做 FIELD() 非常适合这样的任务.

MySQL has a handy function called FIELD() which is excellent for tasks like this.

ORDER BY FIELD(Language,'ENU','JPN','DAN'), ID

但请注意,

  1. 它会降低 SQL 的可移植性,因为其他 DBMS 可能没有这样的功能

  1. It makes your SQL less portable, as other DBMSs might not have such function

当您的语言列表(或其他排序依据)变得更长时,最好有一个单独的表,其中包含 sortorder 列,并将其连接到您的查询以进行排序.

When your list of languages (or other values to sort by) gets much longer, it's better to have a separate table with sortorder column for them, and join it to your queries for ordering.

这篇关于如何在 mySQL 中定义自定义 ORDER BY 顺序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)