MySQL simple example of sorting Chinese characters by pinyin

MySQL simple example of sorting Chinese characters by pinyin

If the field storing the name uses the GBK character set, then it will be easy to deal with, because the GBK internal code itself uses the pinyin sorting method when encoding (the 3755 commonly used first-level Chinese characters are sorted by pinyin, while the second-level Chinese characters are not, but considering that people's names are commonly used Chinese characters, it is sufficient to just sort the first-level Chinese characters correctly).

Directly add order by name asc after the query statement; the query results are sorted in ascending order by last name;

If the field storing the name uses the utf8 character set, the field needs to be converted when sorting; the code is order by convert(name using gbk) asc; Similarly, the query results are sorted in ascending order by last name;

The above simple example of MySQL sorting according to the pinyin of Chinese characters is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Two methods to sort Chinese data in MySQL by pinyin
  • How to sort mysql by the first letter of Chinese characters
  • How to sort mysql in Chinese

<<:  js to achieve interesting countdown effect

>>:  Solution to the welcome to emergency mode message when booting CentOS7.4

Recommend

MySQL 8.0.19 installation detailed tutorial (windows 64 bit)

Table of contents Initialize MySQL Install MySQL ...

What codes should I master when learning web page design?

This article introduces in detail some of the tech...

Detailed explanation of nginx optimization in high concurrency scenarios

In daily operation and maintenance work, nginx se...

Detailed tutorial of using stimulsoft.reports.js with vue-cli

vue-cli uses stimulsoft.reports.js (nanny-level t...

How to expand the disk size of a virtual machine

After Vmvare sets the disk size of the virtual ma...

MySQL data aggregation and grouping

We often need to summarize data without actually ...

Source code reveals why Vue2 this can directly obtain data and methods

Table of contents 1. Example: this can directly g...

Mysql cannot select non-aggregate columns

1. Introduction I recently upgraded my blog and a...

Three Ways to Lock and Unlock User Accounts in Linux

If you already have some kind of password policy ...

JavaScript data visualization: ECharts map making

Table of contents Overview Precautions 1. Usage 2...

Theory Popularization——User Experience

1. Concept Analysis 1: UE User Experience <br ...

Example of how to modify styles via CSS variables

question How to modify CSS pseudo-class style wit...