MySQL中的自然排序

Natural Sort in MySQL(MySQL中的自然排序)
本文介绍了MySQL中的自然排序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

是否有一种优雅的方式在 MySQL 数据库中进行高性能、自然的排序?

Is there an elegant way to have performant, natural sorting in a MySQL database?

例如,如果我有这个数据集:

For example if I have this data set:

  • 最终幻想
  • 最终幻想 4
  • 最终幻想 10
  • 最终幻想 12
  • 最终幻想 12:Promathia 之链
  • 最终幻想冒险
  • 最终幻想起源
  • 最终幻想战术

任何其他优雅的解决方案,而不是将游戏名称拆分成它们的组件

Any other elegant solution than to split up the games' names into their components

  • 标题:《最终幻想》
  • 数字:12"
  • 副标题:Promathia 之链"
  • Title: "Final Fantasy"
  • Number: "12"
  • Subtitle: "Chains of Promathia"

确保它们按正确的顺序出现?(4 之后的 10,而不是 2 之前).

to make sure that they come out in the right order? (10 after 4, not before 2).

这样做很痛苦,因为时不时会有另一款游戏打破解析游戏标题的机制(例如战锤 40,000"、詹姆斯邦德 007")

Doing so is a pain in the a** because every now and then there's another game that breaks that mechanism of parsing the game title (e.g. "Warhammer 40,000", "James Bond 007")

推荐答案

我认为这就是为什么很多东西都按发布日期排序的原因.

I think this is why a lot of things are sorted by release date.

解决方案可能是在表中为SortKey"创建另一列.这可能是标题的经过清理的版本,它符合您为便于排序或计数器而创建的模式.

A solution could be to create another column in your table for the "SortKey". This could be a sanitized version of the title which conforms to a pattern you create for easy sorting or a counter.

这篇关于MySQL中的自然排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

ibtmp1是非压缩的innodb临时表的独立表空间,通过innodb_temp_data_file_path参数指定文件的路径,文件名和大小,默认配置为ibtmp1:12M:autoextend,也就是说在文件系统磁盘足够的情况下,这个文件大小是可以无限增长的。 为了避免ibtmp1文件无止境的暴涨导致
SQL query to group by day(按天分组的 SQL 查询)
What does SQL clause quot;GROUP BY 1quot; mean?(SQL 子句“GROUP BY 1是什么意思?意思是?)
MySQL groupwise MAX() returns unexpected results(MySQL groupwise MAX() 返回意外结果)
MySQL SELECT most frequent by group(MySQL SELECT 按组最频繁)
Include missing months in Group By query(在 Group By 查询中包含缺失的月份)