欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

MySQL查询条件中in会用到索引吗

程序员文章站 2022-09-24 13:53:02
当用人问你mysql 查询条件中 in 会不会用到索引,你该怎么回答? 答案:可能会用到索引 动手来测试下 1.创建一张表,给字段port建立索...

当用人问你mysql 查询条件中 in 会不会用到索引,你该怎么回答?

答案:可能会用到索引

动手来测试下

1.创建一张表,给字段port建立索引

create table `pre_request_logs_20180524` (
 `id` int(11) not null auto_increment,
 `ip` char(16) not null comment '代理ip',
 `port` int(8) not null comment '端口号',
 `status` enum('成功','失败') not null comment '状态',
 `create_time` datetime not null comment '创建时间',
 `update_time` datetime default null on update current_timestamp,
 primary key (`id`),
 key `idx_port` (`port`) using btree
) engine=innodb auto_increment=13 default charset=utf8 comment='代理ip请求日志';

插入测试数据

insert into ``(`id`, `ip`, `port`, `status`, `create_time`, `update_time`) values (1, '192.168.1.199', 53149, '失败', '2018-05-24 14:55:34', '2018-11-16 10:58:13');
insert into ``(`id`, `ip`, `port`, `status`, `create_time`, `update_time`) values (2, '192.168.1.100', 10653, '成功', '2018-05-24 14:55:54', '2018-11-16 10:58:13');
insert into ``(`id`, `ip`, `port`, `status`, `create_time`, `update_time`) values (3, '192.168.1.112', 50359, '失败', '2018-05-24 14:56:00', '2018-11-16 10:58:13');
insert into ``(`id`, `ip`, `port`, `status`, `create_time`, `update_time`) values (4, '192.168.1.67', 30426, '失败', '2018-05-24 14:56:09', '2018-11-16 10:58:13');
insert into ``(`id`, `ip`, `port`, `status`, `create_time`, `update_time`) values (5, '192.168.1.209', 49323, '失败', '2018-05-24 14:56:12', '2018-11-16 10:58:13');
insert into ``(`id`, `ip`, `port`, `status`, `create_time`, `update_time`) values (6, '192.168.1.209', 51161, '成功', '2018-05-24 14:56:13', '2018-11-16 10:58:13');
insert into ``(`id`, `ip`, `port`, `status`, `create_time`, `update_time`) values (7, '192.168.1.12', 54167, '成功', '2018-05-24 14:56:16', '2018-11-16 10:58:13');
insert into ``(`id`, `ip`, `port`, `status`, `create_time`, `update_time`) values (8, '192.168.1.64', 20462, '成功', '2018-05-24 14:56:19', '2018-11-16 10:58:13');
insert into ``(`id`, `ip`, `port`, `status`, `create_time`, `update_time`) values (9, '192.168.1.53', 22823, '失败', '2018-05-24 14:56:31', '2018-11-16 10:58:13');
insert into ``(`id`, `ip`, `port`, `status`, `create_time`, `update_time`) values (10, '192.168.1.85', 48229, '成功', '2018-05-24 14:56:32', '2018-11-16 11:01:11');
insert into ``(`id`, `ip`, `port`, `status`, `create_time`, `update_time`) values (11, '192.168.1.85', 48229, '成功', '2018-05-24 14:56:32', '2018-11-16 11:01:15');
insert into ``(`id`, `ip`, `port`, `status`, `create_time`, `update_time`) values (12, '192.168.1.85', 48229, '成功', '2018-05-24 14:56:32', '2018-11-16 13:34:37');

2.测试sql

explain select * from pre_request_logs_20180524 where port in (51161,20462,48229);

执行结果

MySQL查询条件中in会用到索引吗

从结果来看是没有用到索引,但不要着急下结论,再看二个sql

select * from pre_request_logs_20180524 where port in (51161,48229);
select * from pre_request_logs_20180524 where port in (51161,20462);

执行结果分别如下

MySQL查询条件中in会用到索引吗

MySQL查询条件中in会用到索引吗

可以看到第二条sql是用到了索引,二条sql的区别在于port值不一样,一个包含48229,一个包含20462

其实mysql优化器会自动判断in是否走二级索引,也就是port字段的索引

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。