MySQL中distinct與group by之間的機能停止比擬。本站提示廣大學習愛好者:(MySQL中distinct與group by之間的機能停止比擬)文章只能為提供參考,不一定能成為您想要的結果。以下是MySQL中distinct與group by之間的機能停止比擬正文
比來在網上看到了一些測試,感到不是很精確,明天親身測試了一番。得出了卻論,測試進程在小我盤算機上,能夠不敷周全,僅供參考。
測試進程:
預備一張測試表
CREATE TABLE `test_test` ( `id` int(11) NOT NULL auto_increment, `num` int(11) NOT NULL default '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
建個貯存進程向表中拔出10W條數據
create procedure p_test(pa int(11)) begin declare max_num int(11) default 100000; declare i int default 0; declare rand_num int; select count(id) into max_num from test_test; while i < pa do if max_num < 100000 then select cast(rand()*100 as unsigned) into rand_num; insert into test_test(num)values(rand_num); end if; set i = i +1; end while; end
挪用存儲進程拔出數據
call p_test(100000);
開端測試:(不加索引)
select distinct num from test_test; select num from test_test group by num; [SQL] select distinct num from test_test; 受影響的行: 0 時光: 0.078ms [SQL] select num from test_test group by num; 受影響的行: 0 時光: 0.031ms
2、num字段上創立索引
ALTER TABLE `test_test` ADD INDEX `num_index` (`num`) ;
再次查詢
select distinct num from test_test; select num from test_test group by num; [SQL] select distinct num from test_test; 受影響的行: 0 時光: 0.000ms [SQL] select num from test_test group by num; 受影響的行: 0 時光: 0.000ms
這時候候我們發明時光太小了 0.000秒都沒法准確了。
我們轉到敕令行下測試
mysql> set profiling=1; mysql> select distinct(num) from test_test; mysql> select num from test_test group by num; mysql> show profiles; +----------+------------+----------------------------------------+ | Query_ID | Duration | Query | +----------+------------+----------------------------------------+ | 1 | 0.00072550 | select distinct(num) from test_test | | 2 | 0.00071650 | select num from test_test group by num | +----------+------------+----------------------------------------+
剖析:
加了索引以後 distinct 比沒加索引的distinct 快了107倍。
加了索引以後 group by 比沒加索引的group by 快了43倍。
再來比較 :distinct 和group by
不論是加不加索引group by 都比distinct 快。
是以應用的時刻建議選 group by。
以上就是在MySQL中distinct與group by之間的機能停止比擬的,經由過程以上比擬是否是對distinct和group by有了更深刻的懂得,願望對年夜家的進修有所贊助。