关于聚集表与非聚集表索引叶子节点的问题 create table t1(x int auto_increment primary key, y int, key inb using btree(y)) engine=innodb; create table t2(x int auto_increment primary key, y int, key msm using btree(y)) engine=myisam;
describe select x from t[1或2] where y=12 t1得出的结果是using where, using index t2是using where 不知道这样测试是不是有问题