当前位置:Gxlcms > 数据库问题 > mysql数据库中给表添加index

mysql数据库中给表添加index

时间:2021-07-01 10:21:17 帮助过:27人阅读

一、添加index

1、alter table tableName add index indexName(conlum1,conlum2)

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表示使用的索引的名称

 

    

 

mysql数据库中给表添加index

标签:exp   ble   where   dex   index   http   删除   l数据库   and   

人气教程排行