亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MySQL通過添加索引達到優化SQL的具體操作

發布時間:2020-05-26 11:26:37 來源:網絡 閱讀:276 作者:三月 欄目:MySQL數據庫

不知道大家之前對類似MySQL通過添加索引達到優化SQL的具體操作的文章有無了解,今天我在這里給大家再簡單的講講。感興趣的話就一起來看看正文部分吧,相信看完MySQL通過添加索引達到優化SQL的具體操作你一定會有所收獲的。

在慢查詢日志中有一條慢SQL,執行時間約為3秒

mysql> SELECT
    -> t.total_meeting_num,
    -> r.voip_user_num
    -> FROM
    -> (
    -> SELECT
    -> count(*) total_meeting_num
    -> FROM
    -> Conference
    -> WHERE
    -> isStart = 1
    -> AND startTime >= ADDDATE(now(), - 1)
    -> AND billingcode != 651158
    -> AND billingcode != 651204
    -> ) t,
    -> (
    -> SELECT
    -> count(userID) voip_user_num
    -> FROM
    -> (
    -> SELECT
    -> conferenceID,
    -> userID,
    -> isOnline,
    -> createdTime
    -> FROM
    -> (
    -> SELECT
    -> *
    -> FROM
    -> ConferenceUser
    -> WHERE
    -> createdTime >= ADDDATE(now(), - 1)
    -> AND userID > 1000
    -> ORDER BY
    -> userID,
    -> createdTime DESC
    -> ) t
    -> GROUP BY
    -> userID
    -> ) t,
    -> (
    -> SELECT
    -> *
    -> FROM
    -> Conference
    -> WHERE
    -> isStart = 1
    -> AND startTime >= ADDDATE(now(), - 1)
    -> AND conferenceName NOT LIKE 'evmonitor%'
    -> ) r
    -> WHERE
    -> t.isOnline = 1
    -> AND t.conferenceID = r.conferenceID
    -> ) r;
+-------------------+---------------+
| total_meeting_num | voip_user_num |
+-------------------+---------------+
|                29 |            48 |
+-------------------+---------------+
1 row in set (3.01 sec)

查看執行計劃 

mysql> explain SELECT
    -> t.total_meeting_num,
    -> r.voip_user_num
    -> FROM
    -> (
    -> SELECT
    -> count(*) total_meeting_num
    -> FROM
    -> Conference
    -> WHERE
    -> isStart = 1
    -> AND startTime >= ADDDATE(now(), - 1)
    -> AND billingcode != 651158
    -> AND billingcode != 651204
    -> ) t,
    -> (
    -> SELECT
    -> count(userID) voip_user_num
    -> FROM
    -> (
    -> SELECT
    -> conferenceID,
    -> userID,
    -> isOnline,
    -> createdTime
    -> FROM
    -> (
    -> SELECT
    -> *
    -> FROM
    -> ConferenceUser
    -> WHERE
    -> createdTime >= ADDDATE(now(), - 1)
    -> AND userID > 1000
    -> ORDER BY
    -> userID,
    -> createdTime DESC
    -> ) t
    -> GROUP BY
    -> userID
    -> ) t,
    -> (
    -> SELECT
    -> *
    -> FROM
    -> Conference
    -> WHERE
    -> isStart = 1
    -> AND startTime >= ADDDATE(now(), - 1)
    -> AND conferenceName NOT LIKE 'evmonitor%'
    -> ) r
    -> WHERE
    -> t.isOnline = 1
    -> AND t.conferenceID = r.conferenceID
    -> ) r;
+----+-------------+----------------+--------+----------------+----------------+---------+------+---------+---------------------------------+
| id | select_type | table          | type   | possible_keys  | key            | key_len | ref  | rows    | Extra                           |
+----+-------------+----------------+--------+----------------+----------------+---------+------+---------+---------------------------------+
|  1 | PRIMARY     | <derived2>     | system | NULL           | NULL           | NULL    | NULL |       1 |                                 |
|  1 | PRIMARY     | <derived3>     | system | NULL           | NULL           | NULL    | NULL |       1 |                                 |
|  3 | DERIVED     | <derived6>     | ALL    | NULL           | NULL           | NULL    | NULL |      18 |                                 |
|  3 | DERIVED     | <derived4>     | ALL    | NULL           | NULL           | NULL    | NULL |   12667 | Using where; Using join buffer  |
|  6 | DERIVED     | Conference     | range  | ind_start_time | ind_start_time | 5       | NULL |     889 | Using where                     |
|  4 | DERIVED     | <derived5>     | ALL    | NULL           | NULL           | NULL    | NULL |   18918 | Using temporary; Using filesort |
|  5 | DERIVED     | ConferenceUser | ALL    | NULL           | NULL           | NULL    | NULL | 6439656 | Using where; Using filesort     |
|  2 | DERIVED     | Conference     | range  | ind_start_time | ind_start_time | 5       | NULL |     889 | Using where                     |
+----+-------------+----------------+--------+----------------+----------------+---------+------+---------+---------------------------------+
8 rows in set (3.04 sec)

查看索引

mysql> show index from ConferenceUser;
+----------------+------------+-----------------------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| Table          | Non_unique | Key_name              | Seq_in_index | Column_name  | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment |
+----------------+------------+-----------------------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| ConferenceUser |          0 | PRIMARY               |            1 | recordID     | A         |     6439758 |     NULL | NULL   |      | BTREE      |         |               |
| ConferenceUser |          0 | PRIMARY               |            2 | conferenceID | A         |     6439758 |     NULL | NULL   |      | BTREE      |         |               |
| ConferenceUser |          1 | ind_conference_userID |            1 | conferenceID | A         |      804969 |     NULL | NULL   |      | BTREE      |         |               |
| ConferenceUser |          1 | ind_conference_userID |            2 | userID       | A         |     3219879 |     NULL | NULL   |      | BTREE      |         |               |
+----------------+------------+-----------------------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
4 rows in set (0.00 sec)

在表的列上添加索引

mysql> alter table ConferenceUser add index index_createdtime(createdTime);
    
Query OK, 6439784 rows affected (38.46 sec)
Records: 6439784  Duplicates: 0  Warnings: 0
查看索引
mysql> show index from ConferenceUser;
+----------------+------------+-----------------------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| Table          | Non_unique | Key_name              | Seq_in_index | Column_name  | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment |
+----------------+------------+-----------------------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| ConferenceUser |          0 | PRIMARY               |            1 | recordID     | A         |        NULL |     NULL | NULL   |      | BTREE      |         |               |
| ConferenceUser |          0 | PRIMARY               |            2 | conferenceID | A         |     6439794 |     NULL | NULL   |      | BTREE      |         |               |
| ConferenceUser |          1 | ind_conference_userID |            1 | conferenceID | A         |      715532 |     NULL | NULL   |      | BTREE      |         |               |
| ConferenceUser |          1 | ind_conference_userID |            2 | userID       | A         |     3219897 |     NULL | NULL   |      | BTREE      |         |               |
| ConferenceUser |          1 | index_createdtime     |            1 | createdTime  | A         |     6439794 |     NULL | NULL   |      | BTREE      |         |               |
+----------------+------------+-----------------------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
5 rows in set (0.00 sec)

再次執行時間縮短為0.17秒

mysql> SELECT
    -> t.total_meeting_num,
    -> r.voip_user_num
    -> FROM
    -> (
    -> SELECT
    -> count(*) total_meeting_num
    -> FROM
    -> Conference
    -> WHERE
    -> isStart = 1
    -> AND startTime >= ADDDATE(now(), - 1)
    -> AND billingcode != 651158
    -> AND billingcode != 651204
    -> ) t,
    -> (
    -> SELECT
    -> count(userID) voip_user_num
    -> FROM
    -> (
    -> SELECT
    -> conferenceID,
    -> userID,
    -> isOnline,
    -> createdTime
    -> FROM
    -> (
    -> SELECT
    -> *
    -> FROM
    -> ConferenceUser
    -> WHERE
    -> createdTime >= ADDDATE(now(), - 1)
    -> AND userID > 1000
    -> ORDER BY
    -> userID,
    -> createdTime DESC
    -> ) t
    -> GROUP BY
    -> userID
    -> ) t,
    -> (
    -> SELECT
    -> *
    -> FROM
    -> Conference
    -> WHERE
    -> isStart = 1
    -> AND startTime >= ADDDATE(now(), - 1)
    -> AND conferenceName NOT LIKE 'evmonitor%'
    -> ) r
    -> WHERE
    -> t.isOnline = 1
    -> AND t.conferenceID = r.conferenceID
    -> ) r;
+-------------------+---------------+
| total_meeting_num | voip_user_num |
+-------------------+---------------+
|                29 |            52 |
+-------------------+---------------+
1 row in set (0.17 sec)

查看執行計劃

mysql> explain SELECT
    -> t.total_meeting_num,
    -> r.voip_user_num
    -> FROM
    -> (
    -> SELECT
    -> count(*) total_meeting_num
    -> FROM
    -> Conference
    -> WHERE
    -> isStart = 1
    -> AND startTime >= ADDDATE(now(), - 1)
    -> AND billingcode != 651158
    -> AND billingcode != 651204
    -> ) t,
    -> (
    -> SELECT
    -> count(userID) voip_user_num
    -> FROM
    -> (
    -> SELECT
    -> conferenceID,
    -> userID,
    -> isOnline,
    -> createdTime
    -> FROM
    -> (
    -> SELECT
    -> *
    -> FROM
    -> ConferenceUser
    -> WHERE
    -> createdTime >= ADDDATE(now(), - 1)
    -> AND userID > 1000
    -> ORDER BY
    -> userID,
    -> createdTime DESC
    -> ) t
    -> GROUP BY
    -> userID
    -> ) t,
    -> (
    -> SELECT
    -> *
    -> FROM
    -> Conference
    -> WHERE
    -> isStart = 1
    -> AND startTime >= ADDDATE(now(), - 1)
    -> AND conferenceName NOT LIKE 'evmonitor%'
    -> ) r
    -> WHERE
    -> t.isOnline = 1
    -> AND t.conferenceID = r.conferenceID
    -> ) r;
+----+-------------+----------------+--------+-------------------+-------------------+---------+------+-------+---------------------------------+
| id | select_type | table          | type   | possible_keys     | key               | key_len | ref  | rows  | Extra                           |
+----+-------------+----------------+--------+-------------------+-------------------+---------+------+-------+---------------------------------+
|  1 | PRIMARY     | <derived2>     | system | NULL              | NULL              | NULL    | NULL |     1 |                                 |
|  1 | PRIMARY     | <derived3>     | system | NULL              | NULL              | NULL    | NULL |     1 |                                 |
|  3 | DERIVED     | <derived6>     | ALL    | NULL              | NULL              | NULL    | NULL |    20 |                                 |
|  3 | DERIVED     | <derived4>     | ALL    | NULL              | NULL              | NULL    | NULL | 12682 | Using where; Using join buffer  |
|  6 | DERIVED     | Conference     | range  | ind_start_time    | ind_start_time    | 5       | NULL |   879 | Using where                     |
|  4 | DERIVED     | <derived5>     | ALL    | NULL              | NULL              | NULL    | NULL | 18951 | Using temporary; Using filesort |
|  5 | DERIVED     | ConferenceUser | range  | index_createdtime | index_createdtime | 4       | NULL | 31455 | Using where; Using filesort     |
|  2 | DERIVED     | Conference     | range  | ind_start_time    | ind_start_time    | 5       | NULL |   879 | Using where                     |
+----+-------------+----------------+--------+-------------------+-------------------+---------+------+-------+---------------------------------+
8 rows in set (0.18 sec)

看完MySQL通過添加索引達到優化SQL的具體操作這篇文章,大家覺得怎么樣?如果想要了解更多相關,可以繼續關注我們的行業資訊板塊。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

孝昌县| 通化市| 双柏县| 白城市| 淮阳县| 普陀区| 青神县| 盐津县| 威海市| 融水| 白玉县| 宿州市| 黄陵县| 濉溪县| 略阳县| 平乡县| 临海市| 远安县| 申扎县| 二手房| 克山县| 竹溪县| 菏泽市| 资兴市| 宁都县| 莲花县| 阿鲁科尔沁旗| 南京市| 晋江市| 黄骅市| 科技| 临沧市| 山东省| 阿克苏市| 遂宁市| 定陶县| 青河县| 靖西县| 教育| 石台县| 云阳县|