mysql数据库中给表添加index
⼀、添加index
1、alter table tableName add index indexName(conlum1,conlum2)mysql怎么导出数据库给别人
2、create index indexName on tableName(conlum1,conlum2)
⼆、删除index
1、alter table tableName drop index indexName;
2、drop index indexName on tableName;
三、查询table上的index
show index from tableName
注:当列的数据类型为varchar且数据为数字的时候,谨记保持数据类型⼀致;在select前添加explain查看查询信息EXPLAIN select * from xln_source where gender = 9 and age = 3
key表⽰使⽤的索引的名称

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。