您现在的位置是:网站首页> 编程资料编程资料
mysql的in会不会让索引失效?_Mysql_
2023-05-27
377人已围观
简介 mysql的in会不会让索引失效?_Mysql_
mysql的in会让索引失效吗?不会! 看结果:
mysql> desc select * from tb_province where name in ('lily3', 'lily2', 'lily1'); +----+-------------+-------------+------------+------+---------------+------+---------+------+--------+----------+-------------+ | id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered | Extra | +----+-------------+-------------+------------+------+---------------+------+---------+------+--------+----------+-------------+ | 1 | SIMPLE | tb_province | NULL | ALL | NULL | NULL | NULL | NULL | 108780 | 30.00 | Using where | +----+-------------+-------------+------------+------+---------------+------+---------+------+--------+----------+-------------+ 1 row in set, 1 warning (0.00 sec) mysql> alter table tb_province add index g(name); Query OK, 0 rows affected (0.29 sec) Records: 0 Duplicates: 0 Warnings: 0 mysql> desc select * from tb_province where name in ('lily3', 'lily2', 'lily1'); +----+-------------+-------------+------------+-------+---------------+------+---------+------+------+----------+-----------------------+ | id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered | Extra | +----+-------------+-------------+------------+-------+---------------+------+---------+------+------+----------+-----------------------+ | 1 | SIMPLE | tb_province | NULL | range | g | g | 34 | NULL | 3 | 100.00 | Using index condition | +----+-------------+-------------+------------+-------+---------------+------+---------+------+------+----------+-----------------------+ 1 row in set, 1 warning (0.00 sec) mysql>顺便说下,in查出的结果,不一定按in排序, 如下:
mysql> select * from tb_province where name in ('lily3', 'lily2', 'lily1'); +----+-------+-------+------+------+------+------+------+------+------+------+------+------+------+ | id | name | score | x | x1 | x2 | x3 | x4 | x5 | x6 | x7 | x8 | x9 | x10 | +----+-------+-------+------+------+------+------+------+------+------+------+------+------+------+ | 1 | lily1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | | 2 | lily2 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | | 3 | lily3 | 3 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | +----+-------+-------+------+------+------+------+------+------+------+------+------+------+------+ 3 rows in set (0.00 sec) mysql>总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
您可能感兴趣的文章:
相关内容
- Mysql的数据库迁移到另一个机器上的方法详解_Mysql_
- 详解SQL注入--安全(二)_Mysql_
- window环境下使用VScode连接虚拟机MySQL方法_Mysql_
- 详解mysql基本操作详细(二)_Mysql_
- Mysql经典高逼格/命令行操作(速成)(推荐)_Mysql_
- 浅谈Mysql、SqlServer、Oracle三大数据库的区别_Mysql_
- mysql unique key在查询中的使用与相关问题_Mysql_
- MySQL数据库定时备份的实现方法_Mysql_
- 浅析使用JDBC操作MySQL需要添加Class.forName("com.mysql.jdbc.Driver")_Mysql_
- mysql数据库和oracle数据库之间互相导入备份_Mysql_
