MySQL sorting Chinese details and examples

MySQL sorting Chinese details and examples

Detailed explanation of MySQL sorting Chinese characters

By default, MySQL only supports sorting of dates, times, and English strings. If you use order by on Chinese characters, you may not get the desired results. For example, the following query will not sort by the pinyin of Chinese characters as we want:

SELECT * from user order by user_name;

If you want to sort relative to Chinese, you can use CONVERT (coloum_name USING GBK) to convert Chinese to GBK encoding, and then sort, you can sort according to the pinyin of Chinese:

SELECT * from user order by CONVERT(user_name USING GBK);

Thank you for reading, I hope it can help you, thank you for your support of this site!

You may also be interested in:
  • UTF8 Chinese sorting example code in PHP and MYSQL
  • Example of Chinese sorting in UTF8 encoding in PHP and MYSQL
  • How to sort mysql in Chinese
  • How to make MySQL support Chinese sorting
  • MySQL Chinese sorting precautions and implementation methods

<<:  Linux command line quick tips: How to locate a file

>>:  In-depth understanding of javascript class array

Recommend

Detailed description of the use of advanced configuration of Firewalld in Linux

IP masquerading and port forwarding Firewalld sup...

Docker configures the storage location of local images and containers

Use the find command to find files larger than a ...

Detailed installation process of MySQL 8.0 Windows zip package version

The installation process of MySQL 8.0 Windows zip...

MySQL derived table (Derived Table) simple usage example analysis

This article uses an example to describe the simp...

How to create a my.ini file in the MySQL 5.7.19 installation directory

In the previous article, I introduced the detaile...

MySQL index principle and usage example analysis

This article uses examples to illustrate the prin...

How to use JS to parse the excel content in the clipboard

Table of contents Preface 1. Paste Events and Cli...

Vue Element front-end application development: Use of API Store View in Vuex

Table of contents Overview 1. Separation of front...

JavaScript generates random graphics by clicking

This article shares the specific code of javascri...

Implementation of Docker cross-host network (overlay)

1. Docker cross-host communication Docker cross-h...

CSS Sticky Footer Several Implementations

What is "Sticky Footer" The so-called &...

Why node.js is not suitable for large projects

Table of contents Preface 1. Application componen...

Detailed explanation of how to find the location of the nginx configuration file

How can you find the location of the configuratio...

Exploring the practical value of the CSS property *-gradient

Let me first introduce an interesting property - ...