MySQL utf8 与utf8mb4 索引问题?
CREATE TABLE test1
(id
int(11) NOT NULL AUTO_INCREMENT,name
varchar(20) DEFAULT NULL,code
varchar(50) DEFAULT NULL,
PRIMARY KEY (id
),
KEY idx_code
(code
),
KEY idx_name
(name
)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
CREATE TABLE test2
(id
int(11) NOT NULL AUTO_INCREMENT,name
varchar(20) DEFAULT NULL,code
varchar(50) DEFAULT NULL,
PRIMARY KEY (id
),
KEY idx_code
(code
),
KEY idx_name
(name
)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4;
1.
explain select * from test1 join test2 on test1.code = test2.code where test1.name = 'xxx';
explain select * from test1 join test2 on test1.code = test2.code where test2.name = 'xxx';
为什么第一条语句,test1 可以用上索引,第二条语句 test1 用不上索引。
2.
explain select * from test2 join test1 on test1.code = test2.code where test1.name = 'xxx';
explain select * from test2 join test1 on test1.code = test2.code where test2.name = 'xxx';
为什么第一条语句,test1 可以用上索引,第二条语句 test1 用不上索引。
上面2种情况,test1 的 code 字段都用不上索引,什么时候test1 字段可以用上索引。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
参考 MySQL表字段字符集不同导致的索引失效问题