MYSQL-索引基础
创建索引
create [ unique ] index 索引名 on 表名 (字段名,… ) ;
create index uk_device_name on device_bed(device_name);
在创建表时,如果添加了主键和唯一约束,就会默认创建:主键索引、唯一约束
查看索引
show index from 表名;
show index from device_bed;
删除索引
drop index 索引名 on 表名;
drop index idx_emp_name on device_bed;
注意事项:
- 主键字段,在建表时,会自动创建主键索引
- 添加唯一约束时,数据库实际上会添加唯一索引