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 字段可以用上索引。

阅读 4.4k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏