MySql创建索引时百支持ASC或DESC排序。
下面举例
创建表时同时度创建索知引降序排序(sname 字段上普通道索引降序)
create table tbl1 (
id int unique, sname varchar(50),
index tbl1_index_sname(sname desc)
);
在已有的表创建索引语法
create [unique|内fulltext|spatial] index 索引名容
on 表名(字段名 [长度] [asc|desc]);
mysql创建索引的时候支持字段的desc排序方式吗
最新推荐文章于 2023-02-08 09:00:45 发布