标签:_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中存储
标签:_id esc nbsp 倒序 sql lte div invisible style
原文地址:https://www.cnblogs.com/kate7/p/13335125.html