索引
类似图书中的目录,能够起到快速检索数据的作用
作用:对于大量数据进行查询效率优化时,可以采取添加索引的策略
-- 开启时间监测
set profiling=1;
-- 查询示例数据 price=3.5 的值
select * from goods where price = 3.5;
-- 查看运行时间
show profiles;
-- 添加索引
-- 添加索引(对已存在的表添加索引)
-- create index 索引名称 on 表名(目标字段)
create index goods_index on goods(price);
-- 再次查询示例数据 price=3.5 的值
select * from goods where price = 3.5;
-- 再次查看运行时间
show profiles;
添加索引
对已存在的表添加索引
create index 索引名称 on 表名(目标字段)
查看索引
show index from 表名
创建表时添加索引
-- (1)PRIMARY KEY
-- (2)UNIQUE(唯一,本身也是索引),
-- (3)key
CREATE table create_index(
id int PRIMARY KEY,
name VARCHAR(10) UNIQUE,
age int,
key(age) -- 指定索引的方法
);
删除索引
drop index 索引名称 on 表名