格式:
create index 索引名 on 表名(列名)
格式:
alter table 表名 add index 索引名(列名)
格式:
create table 表名( id not null, username varchar(20) not null, index 索引名 (列名) )
show index from 表名;
select * from mysql.innodb_index_stats a where a.database_name=数据库名;
select * from mysql.innodb_index_stats a where a.database_name=数据库名 and a.table_name like '%表名%';
drop index 索引名 on 表名;
alter table 表名 drop index 索引名;
格式:
create unique index 索引名 on 表名(列名)
格式:
alter table 表名 add unique 索引名(列名)
格式:
create table 表名( id not null, username varchar(20) not null, unique 索引名 (列名) )