溫馨提示×

溫馨提示×

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

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

order by 的時候 select 上的列導(dǎo)致的影響 分析

發(fā)布時間:2020-08-01 16:23:18 來源:網(wǎng)絡(luò) 閱讀:369 作者:騎龜?shù)耐米?/span> 欄目:數(shù)據(jù)庫

create table t1 (
a1 bigint  not null primary key auto_increment,
c10 char(10),
c100 char(100),
c200 char(200),
c30 char(255),
c300 text
)

insert into t1 (c10,c100,c200,c30,c300)values ('a','a','a','a','a');

insert into t1 (c10,c100,c200,c30,c300) select lpad(c10,10,'1'),lpad(c100,100,'1'),lpad(c200,190,'a'),lpad(c30,250,'1'),lpad(c300,2000,'1') from t1;


root@localhost [test]>select count(a1) from t1;
+-----------+
| count(a1) |
+-----------+
|     65536 |

select SQL_NO_CACHE count(1) from (
       select a1 from t1 IGNORE INDEX (primary)   order by c10 desc  limit  1000 ) a;


select SQL_NO_CACHE count(1) from (
       select a1,c100 from t1 IGNORE INDEX (primary)   order by c10 desc  limit  1000 ) a;

select SQL_NO_CACHE count(1) from (
       select a1,c100,c200 from t1 IGNORE INDEX (primary)   order by c10 desc  limit  1000 ) a;
   
   
select SQL_NO_CACHE count(1) from (
       select a1,c100,c200,c30 from t1 IGNORE INDEX (primary)   order by c10 desc  limit  1000 ) a; 

select SQL_NO_CACHE count(1) from (
       select a1,c100,c200,c30 ,c300 from t1 IGNORE INDEX (primary)   order by c10 desc  limit  1000 ) a;    

select SQL_NO_CACHE count(1) from (
       select * from t1 IGNORE INDEX (primary)   order by c10 desc  limit  1000 ) a;
   
   

order by 的時候 select 上的列導(dǎo)致的影響 分析





從上面的實驗 結(jié)果都是只執(zhí)行了 一遍 要是取得相對準(zhǔn)確值 可以 多執(zhí)行幾次 

但我們 可以從最上面和 最后一條 可以看出 一個在 3.* 秒 一個在6.* 秒

說明 有排序的時候 影響 性能 的 不僅僅是 order by 后面的列 因為 都使用了 tmp 表 而加入tmp表的內(nèi)容是select 當(dāng)中 列 然后根據(jù) order by 當(dāng)中的 列 進(jìn)行 排序 所以用的tmp 值是select col 的和 * rows  

大家也可以從 show profile 中 發(fā)現(xiàn)  Creating sort index  是上面的 執(zhí)行性能 重點 進(jìn)一步論證了 上面的觀點
 
不足的地方 望大家 指正
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI