新問題
- 優(yōu)化器中的extra精講
知識點
- extra具體字段含義:
- using filesort: 需要將結(jié)果進行再排序(建議優(yōu)化)渺氧;
- using temporary: 需要用臨時表來儲存結(jié)果小腊,用于排序和分組邀杏;
- using where: 需要將結(jié)果再進行過濾(建議優(yōu)化)闯冷;
- using index: 只使用索引即可返回結(jié)果撞牢,索引覆蓋摆马;
- using index condition: 優(yōu)化器使用index condition pushdown優(yōu)化性穿;
- null: 需要回表查詢(建議優(yōu)化)停蕉;
上手操作
use world;
explain SELECT * FROM city WHERE countrycode='CHN' ORDER BY population;
explain select countrycode from city where countrycode='chn';
課程視頻
mysql_coldknowlegde_lesson13on bilibili
mysql_coldknowlegde_lesson13on xigua