日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

mysql优化查询

發布時間:2025/3/20 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 mysql优化查询 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

使用索引查詢

MariaDB [test]> explain select * from te where id=22; #在沒有增加索引情況下,rows為7,即查詢行數 +------+-------------+-------+------+---------------+------+---------+------+------+-------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +------+-------------+-------+------+---------------+------+---------+------+------+-------------+ | 1 | SIMPLE | te | ALL | NULL | NULL | NULL | NULL | 7 | Using where | +------+-------------+-------+------+---------------+------+---------+------+------+-------------+ 1 row in set (0.01 sec)MariaDB [test]> alter table te add index tindex(id); #增加索引 Query OK, 0 rows affected (0.09 sec) Records: 0 Duplicates: 0 Warnings: 0MariaDB [test]> explain select * from te where id=22; #rows變為1 +------+-------------+-------+------+---------------+--------+---------+-------+------+-------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +------+-------------+-------+------+---------------+--------+---------+-------+------+-------+ | 1 | SIMPLE | te | ref | tindex | tindex | 5 | const | 1 | | +------+-------------+-------+------+---------------+--------+---------+-------+------+-------+ 1 row in set (0.00 sec)MariaDB [test]>

索引使用注意事項
使用like關鍵字查詢時,%號位于首位會導致無法使用索引查詢,否則可以正常使用索引查詢,如下

多列索引問題

MariaDB [test]> alter table te add index indextwo(id,name); #創建索引 Query OK, 0 rows affected (0.06 sec) Records: 0 Duplicates: 0 Warnings: 0MariaDB [test]> show create table te\G; *************************** 1. row *************************** Table: te Create Table: CREATE TABLE `te` ( `id` int(11) DEFAULT NULL, `name` varchar(20) DEFAULT NULL, `se` varchar(3) DEFAULT 'man', `city` varchar(3) DEFAULT 'gx', KEY `indextwo` (`id`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 1 row in set (0.00 sec)ERROR: No query specifiedMariaDB [test]> explain select * from te where name='ds'; #rows為7 +------+-------------+-------+------+---------------+------+---------+------+------+-------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +------+-------------+-------+------+---------------+------+---------+------+------+-------------+ | 1 | SIMPLE | te | ALL | NULL | NULL | NULL | NULL | 7 | Using where | +------+-------------+-------+------+---------------+------+---------+------+------+-------------+ 1 row in set (0.00 sec)MariaDB [test]> explain select * from te where id=3 and name='ds'; #增加多列索引的首列后,可以正常使用索引 +------+-------------+-------+------+---------------+----------+---------+-------------+------+-----------------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +------+-------------+-------+------+---------------+----------+---------+-------------+------+-----------------------+ | 1 | SIMPLE | te | ref | indextwo | indextwo | 28 | const,const | 1 | Using index condition | +------+-------------+-------+------+---------------+----------+---------+-------------+------+-----------------------+ 1 row in set (0.00 sec)MariaDB [test]>

轉載于:https://www.cnblogs.com/biaopei/p/7730497.html

總結

以上是生活随笔為你收集整理的mysql优化查询的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。