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';
java性能优化
阅读 8
2024-05-26
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';
相关推荐
精彩评论(0)