有时候我们读取数据库输出的时候可能会需要按照中文用户名的方式进行排序,有些新手朋友对此事无从下手,接下来由小编为您详细介绍实现方法,感兴趣的朋友可以了解下啊
有时候我们读取数据库输出的时候可能会需要按照中文用户名的方式进行排序,传统的MySQL查询代码如下: 代码如下:
$sql="SELECT * FROM users";//传统查询方式
按照中文用户名进行排序的MySQL查询代码如下:
代码如下:
$sql="SELECT * FROM users ORDER BY CONVERT(name USING gbk)";//按照中文用
Statement: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