mysql索引建立及应用(MYSQL创建索引,这些知识应该了解)
类别:数据库 浏览量:1675
时间:2021-11-03 12:57:12 mysql索引建立及应用
MYSQL创建索引,这些知识应该了解
1.创建索引方法
创建索引可以在建表时指定,也可以建表后使用 alter table 或 create index 语句创建索引。下面展示下几种常见的创建索引场景。
- # 建表时指定索引
- CREATE TABLE `t_index` (
- `increment_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增主键',
- `col1` int(11) NOT NULL,
- `col2` varchar(20) NOT NULL,
- `col3` varchar(50) NOT NULL,
- `col4` int(11) NOT NULL,
- `col5` varchar(50) NOT NULL,
- PRIMARY KEY (`increment_id`),
- UNIQUE KEY `uk_col1` (`col1`),
- KEY `idx_col2` (`col2`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='测试索引';
- # 创建索引(两种方法)
- # 普通索引
- alter table `t_index` add index idx_col3 (col3);
- create index idx_col3 on t_index(col3);
- # 唯一索引
- alter table `t_index` add unique index uk_col4 (col4);
- create unique index uk_col4 on t_index(col4);
- # 联合索引
- alter table `t_index` add index idx_col3_col4 (col3,col4);
- create index idx_col3_col4 on t_index(col3,col4);
- # 前缀索引
- alter table `t_index` add index idx_col5 (col5(20));
- create index idx_col5 on t_index(col5(20));
- # 查看表索引
- mysql> show index from t_index;
- +---------+------------+----------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
- | Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment |
- +---------+------------+----------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
- | t_index | 0 | PRIMARY | 1 | increment_id | A | 0 | NULL | NULL | | BTREE | | |
- | t_index | 0 | uk_col1 | 1 | col1 | A | 0 | NULL | NULL | | BTREE | | |
- | t_index | 1 | idx_col2 | 1 | col2 | A | 0 | NULL | NULL | | BTREE | | |
- | t_index | 1 | idx_col3 | 1 | col3 | A | 0 | NULL | NULL | | BTREE | | |
- +---------+------------+----------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
2.创建索引所需权限
如果你用的不是 root 账号,那创建索引就要考虑权限问题了,是不是需要 create、alter 权限就行了呢?下面我们来具体看下。
- # 测试用户的权限
- mysql> show grants;
- +-------------------------------------------------------------------------------------+
- | Grants for testuser@% |
- +-------------------------------------------------------------------------------------+
- | GRANT USAGE ON *.* TO 'testuser'@'%' |
- | GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, ALTER ON `testdb`.* TO 'testuser'@'%' |
- +-------------------------------------------------------------------------------------+
- # alter table 方式创建索引
- mysql> alter table `t_index` add index idx_col2 (col2);
- Query OK, 0 rows affected (0.05 sec)
- Records: 0 Duplicates: 0 Warnings: 0
- # create index 方式创建索引
- mysql> create index idx_col3 on t_index(col3);
- ERROR 1142 (42000): INDEX command denied to user 'testuser'@'localhost' for table 't_index'
- # create index 方式创建索引还需要index权限 赋予index权限后再执行
- mysql> create index idx_col3 on t_index(col3);
- Query OK, 0 rows affected (0.04 sec)
- Records: 0 Duplicates: 0 Warnings: 0
从上面测试可以看出,使用 alter table 方式创建索引需要 alter 权限,使用 create index 方式创建索引需要 index 权限。
另外说明下,删除索引也是可以使用 alter table `tb_name` drop index xxx 和 drop index xxx on tb_name 两种方式,分别需要 alter 和 index 权限。
索引的优点显而易见是可以加速查询,但创建索引也是有代价的。首先每建立一个索引都要为它建立一棵B+树,会占用额外的存储空间;其次当对表中的数据进行增加、删除、修改时,索引也需要动态的维护,降低了数据的维护速度。所以我们创建索引时还是需要根据业务来考虑的,一个表中建议不要加过多索引。
原文地址:https://mp.weixin.qq.com/s?__biz=MzI2NTA3OTY2Nw==&mid=2647636131&idx=1&sn=3e421df081e97c544c102e21b3a30ea9&chksm=f299c6bfc5ee4fa98b31e6620975332213ae239d3919ccddb1100b07831a08c4ac6a4919eb88&mpshare=1&
您可能感兴趣
- mysql存储过程和函数(MySQL存储过程的查询命令介绍)
- mysql8.0.16安装步骤图解(mysql 8.0.22 安装配置图文教程)
- mysql六大锁解析(MySQL 锁的相关知识总结)
- mysql如何解决主从延迟(MySQL主从延迟问题解决)
- mysql配置多实例
- mysql 分库分表步骤(MySQL读多写少设计方案 - 分库分表还能这么做?)
- mysqlworkbench怎么设置连接(详解MySQL Workbench使用教程)
- thinkphp5.1手动连接mysql数据库(thinkphp5框架结合mysql实现微信登录和自定义分享链接与图文功能示例)
- mysql8.0.25安装教程(Mysql8.0.17安装教程推荐)
- mysql将字符串转换为日期的函数(Mysql中时间戳转为Date的方法示例)
- mysql查询killed状态的进程(MySQL kill指令使用指南)
- mysql统计函数详解(浅析MySQL的基数统计)
- mysql和explain哪个好(MySQL EXPLAIN输出列的详细解释)
- mysql 时间戳获取(MySQL时间盲注的五种延时方法实现)
- navicat连接mysql报1045(解决Navicat for MySQL 连接 MySQL 报2005错误的问题)
- binlog怎么恢复mysql数据库(mysql5.7使用binlog 恢复数据的方法)
- 红色代表什么(红色代表什么情感和含义)
- 高中数学题(高中数学题型总结及解题方法)
- 冰岛旅游攻略(冰岛旅游攻略及花费)
- 为什么现在年轻人越来越喜欢买衣服(为什么现在年轻人越来越喜欢买衣服穿)
- 怎么做好SEO(怎么做好seo内容优化)
- 冬季钓鱼子线用 长 还是 短(冬季钓鱼子线用)
热门推荐
- cssbackground(用 CSS background 实现刻度线的呈现)
- vmware esxi账号密码(VMware Esxi忘记root密码成功找回的操作方法)
- pythonmatplotlib散点图怎么画(python使用matplotlib画柱状图、散点图)
- jquery中serialize方法对空格的处理
- 织梦怎么添加图片(织梦怎么去掉上传图片的水印改为自己设计的水印)
- vmware esxi搭建云桌面(VMware ESXI服务器虚拟化搭建集群)
- uni app开发教程(uniapp+Html5端实现PC端适配)
- canvas绘制流星(使用canvas实现黑客帝国数字雨效果)
- mysql执行计划详细解读(详解MySQL的Seconds_Behind_Master)
- js中字符串拼接
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9