码迷,mamicode.com
首页 > 数据库 > 详细

MySQL中的不可见索引、倒序索引

时间:2020-07-18 15:38:18      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:_id   esc   nbsp   倒序   sql   lte   div   invisible   style   

1.不可见索引

create table t12 (i int ,j int ,k int, index i_idx (i) invisible) engine = InnoDB
alter table t12 alter index i_idx invisible
alter table t12 alter index i_idx visible

2. 倒序索引

CREATE TABLE t13 (a int,b int ,index a_desc_b_asc (a DESC,b Asc))

 

 

大多数MySQL索引(如PRIMARY KEY、UNIQUE、INDEX、和 FULLTEXT等)在BTREE中存储

MySQL中的不可见索引、倒序索引

标签:_id   esc   nbsp   倒序   sql   lte   div   invisible   style   

原文地址:https://www.cnblogs.com/kate7/p/13335125.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!