MySQL utf8 与utf8mb4 索引问题?

发布于 2022-09-07 22:40:11 字数 1320 浏览 23 评论 0

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文