日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 运维知识 > 数据库 >内容正文

数据库

mysql优化查询

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

使用索引查詢

MariaDB [test]> explain select * from te where id=22; #在沒有增加索引情況下,rows為7,即查詢行數(shù) +------+-------------+-------+------+---------------+------+---------+------+------+-------------+ | 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變?yōu)? +------+-------------+-------+------+---------------+--------+---------+-------+------+-------+ | 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關(guān)鍵字查詢時,%號位于首位會導(dǎo)致無法使用索引查詢,否則可以正常使用索引查詢,如下

多列索引問題

MariaDB [test]> alter table te add index indextwo(id,name); #創(chuàng)建索引 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]>

轉(zhuǎn)載于:https://www.cnblogs.com/biaopei/p/7730497.html

總結(jié)

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

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。