MySQL'Order By'-正确排序字母数字


71

我想按以下顺序对以下数据项进行排序(数字1-12):

1个
2
3
4
5
6
7
8
9
10
11
12

但是,我的查询-使用order by xxxxx asc按其他所有字母开头的数字排序:

1个
10
11
12
2
3
4
5
6
7
8
9

有什么技巧可以使其更正确地排序吗?

此外,为了充分公开,这可以是字母和数字的组合(尽管现在不是),例如:

A1
534克
G46A
100B
100A
100JE

等等....

谢谢!

更新:人们要求查询

select * from table order by name asc

Answers:


131

人们使用不同的技巧来做到这一点。我用Google搜索了一下,发现每个结果都有不同的技巧。看看他们:

编辑:

我刚刚为以后的访问者添加了每个链接的代码。

MySQL中的字母数字排序

给定输入

1A 1a 10A 9B 21C 1C 1D

预期产量

1A 1C 1D 1a 9B 10A 21C

询问

Bin Way
===================================
SELECT 
tbl_column, 
BIN(tbl_column) AS binray_not_needed_column
FROM db_table
ORDER BY binray_not_needed_column ASC , tbl_column ASC

-----------------------

Cast Way
===================================
SELECT 
tbl_column, 
CAST(tbl_column as SIGNED) AS casted_column
FROM db_table
ORDER BY casted_column ASC , tbl_column ASC

MySQL中的自然排序

给定输入

表:sorting_test
 -------------------------- -------------
| 字母数字VARCHAR(75)| 整数INT |
 -------------------------- -------------
| test1 | 1 |
| test12 | 2 |
| test13 | 3 |
| test2 | 4 |
| test3 | 5 |
 -------------------------- -------------

预期产量

 -------------------------- -------------
| alphanumeric VARCHAR(75) | integer INT |
 -------------------------- -------------
| test1                    | 1           |
| test2                    | 4           |
| test3                    | 5           |
| test12                   | 2           |
| test13                   | 3           |
 -------------------------- -------------

询问

SELECT alphanumeric, integer
       FROM sorting_test
       ORDER BY LENGTH(alphanumeric), alphanumeric  

数字值与字母数字值混合排序

给定输入

2a, 12, 5b, 5a, 10, 11, 1, 4b

预期产量

1, 2a, 4b, 5a, 5b, 10, 11, 12

询问

SELECT version
FROM version_sorting
ORDER BY CAST(version AS UNSIGNED), version;

希望这可以帮助


12
最好在此帖子本身中包含更完整的信息。
showdev

3
@showdev我已经包含了它,希望对您有所帮助:)
affaz

这些都不对我有用:/对这样的列表有什么建议吗?pastebin.com/d4kXq6HS 理想的输出是:pastebin.com/kJ4Zc3XY
错误

1
如果输入是A1,A10,B1,C11,D8怎么办?没有招作品
基拉加藤

我刚刚为MySQL发布了一个真正的通用nat-sort函数,该函数应正确处理所有示例,此外还有更多其他功能。在这里查看我对“ MySQL中的自然排序”的回答: stackoverflow.com/a/58154535/999120
Doin

16

我知道这篇文章已经关闭,但是我认为我的方式可以帮助某些人。就是这样:

我的数据集非常相似,但有点复杂。它具有数字和字母数字数据:

1
2
Chair 
3
0
4
5
-
Table
10
13
19
Windows
99
102
Dog

我想首先使用“-”符号,然后使用数字,然后使用文本。

所以我这样去:

SELECT name, (name = '-') boolDash, (name = '0') boolZero, (name+0 > 0) boolNum 
FROM table 
ORDER BY boolDash DESC, boolZero DESC, boolNum DESC, (name+0), name

结果应该是:

-
0    
1
2
3
4
5
10
13
99
102
Chair
Dog
Table
Windows

整个想法是对SELECT进行一些简单的检查,并对结果进行排序。


我无法通过(name = '-') boolDash输入select语句来使它起作用。但是我通过name = '-'直接按语句排序使它起作用。
Yep_It's_Me

15

只是这样做:

SELECT * FROM table ORDER BY column `name`+0 ASC

附加+0表示:

0、10、11、2、3、4

变成:

0、2、3、4、10、11


2
这非常危险!在我的查询中,它运行良好,刷新时我对答案BUT进行了投票,但没有成功!然后,我继续刷新该查询100次,随机地它起作用,而对于SAME查询却不起作用!不要依赖这个!我的表的末尾有一个数字,这是我的查询:从information_schema.TABLES中选择TABLE_NAME =那里的TABLE_SCHEMA ='my_database'和TABLE_NAME喜欢'%my_table%'ORDER BY TABLE_NAME + 0 DESC LIMIT 1
Tarik

4
@Tarik可能是因为您使用information_schema的只是估计值,它们并未完全汇总。
AO_

@Andrew Odendaal答案每次都对我有效,使用ORDER
BY'name

11

我恨这个,但是会工作

order by lpad(name, 10, 0)  <-- assuming maximum string length is 10
                            <-- you can adjust to a bigger length if you want to

这实际上适用于我的情况USA-0027-1,USA-0027-2,USA-0027-10,USA-0027-12
-dbinott

这对我有用,也谢谢您挽救了我的另一天。
Sumit Kumar Gupta

6

我有一些很好的结果

SELECT alphanumeric, integer FROM sorting_test ORDER BY CAST(alphanumeric AS UNSIGNED), alphanumeric ASC

4

这适用于数据类型:Data1,Data2,Data3 ......,Data21。表示“数据”字符串在所有行中都是通用的。

对于ORDER BY ASC,它将完美排序;对于ORDER BY DESC,不合适。

SELECT * FROM table_name ORDER BY LENGTH(column_name), column_name ASC;

类似的查询将是什么ALTER TABLE
Ashish Kamble

3

之前已经问过这种类型的问题。

您正在谈论的排序类型称为“自然排序”。您要对其进行排序的数据是字母数字。最好创建一个新的列进行排序。

如需进一步的帮助,请检查 mysql中的自然排序


3

如果您需要对没有任何标准格式的字母数字列进行排序

SELECT * FROM table ORDER BY (name = '0') DESC, (name+0 > 0) DESC, name+0 ASC, name ASC

如果需要,可以使用其他逻辑来修改此解决方案以包括对非字母数字字符的支持。


这是在整个互联网上对我
有用

1

这应该对字母数字字段进行排序,例如:1 /仅数字,order by 1,2,3,4,5,6,7,8,9,10,11等等... 2 /然后对文本字段进行排序,例如:1foo, 2bar, aaa11aa, aaa22aa, b5452etc ...

SELECT  MyField
FROM MyTable
order by 
    IF( MyField REGEXP '^-?[0-9]+$' = 0, 
    9999999999 ,  
    CAST(MyField AS DECIMAL) 
    ), MyField

该查询检查数据是否为数字,如果未将其置于9999999999,则首先在此列上排序,然后对带有文本的数据进行排序

祝好运!


0

我没有尝试编写一些函数并减慢SELECT查询速度,而是想到了另一种方法...

在数据库中创建一个额外的字段,用于保存以下类的结果,并在您插入新行时,运行将通过该类自然排序的字段值,并将其结果保存在额外的字段中。然后,不按原始字段排序,而是按多余字段排序。

String nsFieldVal = new NaturalSortString(getFieldValue(), 4).toString()

The above means:
- Create a NaturalSortString for the String returned from getFieldValue()
- Allow up to 4 bytes to store each character or number (4 bytes = ffff = 65535)

| field(32)  |  nsfield(161)                            |   
  a1            300610001

String sortString = new NaturalSortString(getString(), 4).toString()

import StringUtils;

/**
 * Creates a string that allows natural sorting in a SQL database
 * eg, 0 1 1a 2 3 3a 10 100 a a1 a1a1 b
 */
public class NaturalSortString {

    private String inStr;
    private int byteSize;
    private StringBuilder out = new StringBuilder();

    /**
     * A byte stores the hex value (0 to f) of a letter or number.
     * Since a letter is two bytes, the minimum byteSize is 2.
     *
     * 2 bytes = 00 - ff  (max number is 255)
     * 3 bytes = 000 - fff (max number is 4095)
     * 4 bytes = 0000 - ffff (max number is 65535)
     *
     * For example:
     * dog123 = 64,6F,67,7B and thus byteSize >= 2.      
     * dog280 = 64,6F,67,118 and thus byteSize >= 3.
     *
     * For example:
     * The String, "There are 1000000 spots on a dalmatian" would require a byteSize that can 
     * store the number '1000000' which in hex is 'f4240' and thus the byteSize must be at least 5
     *
     * The dbColumn size to store the NaturalSortString is calculated as:
     * > originalStringColumnSize x byteSize + 1
     * The extra '1' is a marker for String type - Letter, Number, Symbol
     * Thus, if the originalStringColumn is varchar(32) and the byteSize is 5:
     * > NaturalSortStringColumnSize = 32 x 5 + 1 = varchar(161)
     *
     * The byteSize must be the same for all NaturalSortStrings created in the same table.
     * If you need to change the byteSize (for instance, to accommodate larger numbers), you will
     * need to recalculate the NaturalSortString for each existing row using the new byteSize.
     *
     * @param str        String to create a natural sort string from
     * @param byteSize   Per character storage byte size (minimum 2)
     * @throws Exception See the error description thrown
     */
    public NaturalSortString(String str, int byteSize) throws Exception {
        if (str == null || str.isEmpty()) return;
        this.inStr = str;
        this.byteSize = Math.max(2, byteSize);  // minimum of 2 bytes to hold a character
        setStringType();
        iterateString();
    }

    private void setStringType() {
        char firstchar = inStr.toLowerCase().subSequence(0, 1).charAt(0);
        if (Character.isLetter(firstchar))     // letters third
            out.append(3);
        else if (Character.isDigit(firstchar)) // numbers second
            out.append(2);
        else                                   // non-alphanumeric first
            out.append(1);
    }

    private void iterateString() throws Exception {
        StringBuilder n = new StringBuilder();
        for (char c : inStr.toLowerCase().toCharArray()) { // lowercase for CASE INSENSITIVE sorting
            if (Character.isDigit(c)) {
                // group numbers
                n.append(c);
                continue;
            }
            if (n.length() > 0) {
                addInteger(n.toString());
                n = new StringBuilder();
            }
            addCharacter(c);
        }
        if (n.length() > 0) {
            addInteger(n.toString());
        }
    }

    private void addInteger(String s) throws Exception {
        int i = Integer.parseInt(s);
        if (i >= (Math.pow(16, byteSize)))
            throw new Exception("naturalsort_bytesize_exceeded");
        out.append(StringUtils.padLeft(Integer.toHexString(i), byteSize));
    }

    private void addCharacter(char c) {
        //TODO: Add rest of accented characters
        if (c >= 224 && c <= 229) // set accented a to a
            c = 'a';
        else if (c >= 232 && c <= 235) // set accented e to e
            c = 'e';
        else if (c >= 236 && c <= 239) // set accented i to i
            c = 'i';
        else if (c >= 242 && c <= 246) // set accented o to o
            c = 'o';
        else if (c >= 249 && c <= 252) // set accented u to u
            c = 'u';
        else if (c >= 253 && c <= 255) // set accented y to y
            c = 'y';

        out.append(StringUtils.padLeft(Integer.toHexString(c), byteSize));
    }

    @Override
    public String toString() {
        return out.toString();
    }
}

为了完整性,下面是StringUtils.padLeft方法:

public static String padLeft(String s, int n) {
    if (n - s.length() == 0) return s;
    return String.format("%0" + (n - s.length()) + "d%s", 0, s);
}

结果应该如下所示

-1
-a
0
1
1.0
1.01
1.1.1
1a
1b
9
10
10a
10ab
11
12
12abcd
100
a
a1a1
a1a2
a-1
a-2
áviacion
b
c1
c2
c12
c100
d
d1.1.1
e

的确,MySQL中nat-sort的最佳方法是对单独的排序键进行排序。然而,您的解决方案(一)排序文本部分,(c)是当需要外部的代码到MySQL创建这些键,(B)忽略排序规则巨大低效的排序键表示来,和(d)提供绝对没有与简单地将字符串中的所有数字左填充至固定字符长度相比,它具有更多的优势(如stackoverflow.com/q/153633/999120页上的其他几种解决方案一样)。抱歉,但是这个答案太可怕了:投票失败。
Doin

0
SELECT length(actual_project_name),actual_project_name,
SUBSTRING_INDEX(actual_project_name,'-',1) as aaaaaa,
SUBSTRING_INDEX(actual_project_name, '-', -1) as actual_project_number,
concat(SUBSTRING_INDEX(actual_project_name,'-',1),SUBSTRING_INDEX(actual_project_name, '-', -1)) as a
FROM ctts.test22 
order by 
SUBSTRING_INDEX(actual_project_name,'-',1) asc,cast(SUBSTRING_INDEX(actual_project_name, '-', -1) as unsigned) asc

1
当我们使用LENGTH(column_name)时,将基于长度函数值的column_name ASC进行排序。如果长度变化,则排序不起作用。使用上面的查询。
user7646370

0

MySQL ORDER BY以正确的顺序对字母数字进行排序

例:

SELECT `alphanumericCol` FROM `tableName` ORDER BY 
  SUBSTR(`alphanumericCol` FROM 1 FOR 1), 
  LPAD(lower(`alphanumericCol`), 10,0) ASC

输出:

1
2
11
21
100
101
102
104
S-104A
S-105
S-107
S-111

0

这是一个简单的例子。

SELECT HEX(some_col) h        
FROM some_table 
ORDER BY h


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.