Home > php教程 > php手册 > PHP读取数据库并按照中文名称进行排序实现代码

PHP读取数据库并按照中文名称进行排序实现代码

WBOY
Release: 2016-06-06 20:32:29
Original
1031 people have browsed it

有时候我们读取数据库输出的时候可能会需要按照中文用户名的方式进行排序,有些新手朋友对此事无从下手,接下来由小编为您详细介绍实现方法,感兴趣的朋友可以了解下啊

有时候我们读取数据库输出的时候可能会需要按照中文用户名的方式进行排序,传统的MySQL查询代码如下: 代码如下:
$sql="SELECT * FROM users";//传统查询方式

按照中文用户名进行排序的MySQL查询代码如下:
代码如下:
$sql="SELECT * FROM users ORDER BY CONVERT(name USING gbk)";//按照中文用
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template