EXPLAIN select * from `city`;

EXPLAIN select * from `city` where ID>5 and ID<20;

EXPLAIN select * from `city`where ID=5;

索引查询
EXPLAIN select * from `city`where CountryCode='NLD';

普通查询
EXPLAIN select * from `city` where Name='Haag';

微信扫一扫
EXPLAIN select * from `city`;

EXPLAIN select * from `city` where ID>5 and ID<20;

EXPLAIN select * from `city`where ID=5;

索引查询
EXPLAIN select * from `city`where CountryCode='NLD';

普通查询
EXPLAIN select * from `city` where Name='Haag';

相关推荐