天天看點

mysql 中文名稱排序,mysql 依照中文名稱排序

mysql 按照中文名稱排序

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------

-- Table structure for `person`

-- ----------------------------

DROP TABLE IF EXISTS `person`;

CREATE TABLE `person` (

`id` int(10) unsigned NOT NULL auto_increment,

`name` varchar(20) default NULL,

PRIMARY KEY (`id`)

) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- ----------------------------

-- Records of person

-- ----------------------------

INSERT INTO `person` VALUES ('1', '張三');

INSERT INTO `person` VALUES ('2', '李四');

INSERT INTO `person` VALUES ('3', '王五');

INSERT INTO `person` VALUES ('4', '馬六');

INSERT INTO `person` VALUES ('5', '錢七');

正序:

select * from person ORDER BY CONVERT(name USING gbk);

結果:

2李四

4馬六

5錢七

3王五

1張三

倒序:

select * from person ORDER BY CONVERT(name USING gbk) desc

結果:

1張三

3王五

5錢七

4馬六

2李四