新问题
- 优化器中的type精讲
知识点
- 效率从低到高:
- all<index<range<ref<eq_ref<const,system < null
- 具体字段含义:
- all: 全盘扫描,不走索引;
- index: 按索引次序全索引扫描;
- ref: 索引直接获取单个数据;
- const: 通过主键直接返回数据;
- null: 不操作效率最快;
上手操作
use world;
select * from city;
select countrycode from city;
select * from city where id<10;
select * from city where id=1;
课程视频
mysql_coldknowlegde_lesson12on bilibili
mysql_coldknowlegde_lesson12on xigua