婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > mysql慢查詢優化之從理論和實踐說明limit的優點

mysql慢查詢優化之從理論和實踐說明limit的優點

熱門標簽:中國地圖標注公司 自己做地圖標注需要些什么 天津公司外呼系統軟件 百度地圖標注要什么軟件 福建外呼電銷機器人加盟 電話機器人的價格多少錢一個月 400電話申請廠家現貨 徐涇鎮騰訊地圖標注 昌德訊外呼系統

很多時候, 我們預期查詢的結果最多是1條記錄數據, 那么這個時候, 最好用上limit 1,  當查到這條數據后, mysql會立即終止繼續查詢, 不進行更多的無用查詢, 從而提升了效率。

我們來實際測試一下, 在一個擁有10萬的mysql表中, 查找lily的分數(假設系統中只有1個lily, 而我們預期也只需要這條數據)。為了顯示出時間的差別, 我并不對表的name字段建索引。

先看看表結構:

mysql> show create table tb_province;
+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table    | Create Table                                                                                                                                                                                                                                                                                                                           |
+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tb_province | CREATE TABLE `tb_province` (
 `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT,
 `name` varchar(32) NOT NULL,
 `score` int(10) unsigned DEFAULT '0',
 `x` int(10) unsigned DEFAULT '0',
 `x1` int(10) unsigned DEFAULT '0',
 `x2` int(10) unsigned DEFAULT '0',
 `x3` int(10) unsigned DEFAULT '0',
 `x4` int(10) unsigned DEFAULT '0',
 `x5` int(10) unsigned DEFAULT '0',
 `x6` int(10) unsigned DEFAULT '0',
 `x7` int(10) unsigned DEFAULT '0',
 `x8` int(10) unsigned DEFAULT '0',
 `x9` int(10) unsigned DEFAULT '0',
 `x10` int(10) unsigned DEFAULT '0',
 PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=124178 DEFAULT CHARSET=latin1 |
+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

我們打開set profiling=1;的開關,執行mysql語句來對比:

mysql> select score from tb_province where name='lily';
+-------+
| score |
+-------+
|  100 |
+-------+
1 row in set (0.03 sec)

mysql> select score from tb_province where name='lily';
+-------+
| score |
+-------+
|  100 |
+-------+
1 row in set (0.03 sec)

mysql> select score from tb_province where name='lily';
+-------+
| score |
+-------+
|  100 |
+-------+
1 row in set (0.04 sec)

mysql> select score from tb_province where name='lily';
+-------+
| score |
+-------+
|  100 |
+-------+
1 row in set (0.02 sec)

mysql> select score from tb_province where name='lily';
+-------+
| score |
+-------+
|  100 |
+-------+
1 row in set (0.03 sec)

mysql> select score from tb_province where name='lily' limit 1;
+-------+
| score |
+-------+
|  100 |
+-------+
1 row in set (0.00 sec)

mysql> select score from tb_province where name='lily' limit 1;
+-------+
| score |
+-------+
|  100 |
+-------+
1 row in set (0.00 sec)

mysql> select score from tb_province where name='lily' limit 1;
+-------+
| score |
+-------+
|  100 |
+-------+
1 row in set (0.00 sec)

mysql> select score from tb_province where name='lily' limit 1;
+-------+
| score |
+-------+
|  100 |
+-------+
1 row in set (0.01 sec)

mysql> select score from tb_province where name='lily' limit 1;
+-------+
| score |
+-------+
|  100 |
+-------+
1 row in set (0.00 sec)

可見,我們針對是否采用limit 1進行了5次對比測試, 來看看結果吧:

mysql> show profiles;
+----------+------------+---------------------------------------------------------+
| Query_ID | Duration  | Query                          |
+----------+------------+---------------------------------------------------------+
|    5 | 0.02686000 | select score from tb_province where name='lily'     |
|    6 | 0.02649050 | select score from tb_province where name='lily'     |
|    7 | 0.03413500 | select score from tb_province where name='lily'     |
|    8 | 0.02601350 | select score from tb_province where name='lily'     |
|    9 | 0.02785775 | select score from tb_province where name='lily'     |
|    10 | 0.00042300 | select score from tb_province where name='lily' limit 1 |
|    11 | 0.00043250 | select score from tb_province where name='lily' limit 1 |
|    12 | 0.00044350 | select score from tb_province where name='lily' limit 1 |
|    13 | 0.00053200 | select score from tb_province where name='lily' limit 1 |
|    14 | 0.00043250 | select score from tb_province where name='lily' limit 1 |
+----------+------------+---------------------------------------------------------+
14 rows in set, 1 warning (0.00 sec)

可見,采用limit 1后, mysql語句的效率確實提升很多。 當表更大時, 效率提升會更加明顯。 

我們已經從理論和實踐的腳本都說明了limit的優點, 所以, 建議是:在可用limit的時候要用limit (當然, 如果結果是多個,肯定不能limit 1?。?/p>

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對腳本之家的支持。如果你想了解更多相關內容請查看下面相關鏈接

您可能感興趣的文章:
  • MySQL之select in 子查詢優化的實現
  • 一篇文章掌握MySQL的索引查詢優化技巧
  • MySQL千萬級大數據SQL查詢優化知識點總結
  • 一步步教你MySQL查詢優化分析教程
  • Mysql慢查詢優化方法及優化原則
  • MySQL查詢優化之查詢慢原因和解決技巧

標簽:梅河口 昌都 荊門 駐馬店 陜西 北京 鄂爾多斯 黔西

巨人網絡通訊聲明:本文標題《mysql慢查詢優化之從理論和實踐說明limit的優點》,本文關鍵詞  mysql,慢,查詢,優化,之,從,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《mysql慢查詢優化之從理論和實踐說明limit的優點》相關的同類信息!
  • 本頁收集關于mysql慢查詢優化之從理論和實踐說明limit的優點的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 宣恩县| 桂林市| 富蕴县| 普兰店市| 新竹市| 中西区| 买车| 凤翔县| 江门市| 故城县| 景东| 南投县| 黑河市| 濮阳市| 常州市| 姚安县| 宁晋县| 邹平县| 安龙县| 南京市| 天祝| 安图县| 富川| 蒲江县| 武乡县| 井冈山市| 和顺县| 中牟县| 莒南县| 滦平县| 光山县| 舒城县| 石嘴山市| 云安县| 江北区| 宝山区| 武功县| 万盛区| 浠水县| 游戏| 社会|