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

mysql数据库中给表添加index

时间:2017-04-28 15:54:42      阅读:191      评论:0      收藏:0      [点我收藏+]

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

一、添加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   

原文地址:http://www.cnblogs.com/guodaxia227/p/6781413.html

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