Mysql alphanumeric sorting

Source: Internet
Author: User
In mysql, the following fields are sorted by numbers and letters: & nbsp; id1a2b3c, numbers are sorted by numbers. one solution is selectIdfromaorderby mysql.
Table a has the following fields:
Id 1 a 2 B 3 c
After sorting
Id a B c 1 2 3
That is to say, the characters are sorted by characters, and the numbers are sorted by numbers.
Read a solution
Select Id from a order by (case when REGEXP_LIKE (trim (Id), '^ [0-9] + $') then ascii (Id) + 74 else ascii (Id) end)
Result mysql cannot recognize REGEXP_LIKE.

------ Solution --------------------
SQL code
Select 'id' as chunion select '1' union select 'A' union select '3' union select 'C' union select '2' union select 'B' order by length (ch) desc, ch + 0 = 0 desc, ch

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.