溫馨提示×

溫馨提示×

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

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

分析PostgreSQL中的distinct和group by

發(fā)布時間:2021-11-05 11:01:59 來源:億速云 閱讀:578 作者:iii 欄目:關系型數(shù)據(jù)庫

本篇內(nèi)容介紹了“分析PostgreSQL中的distinct和group by”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

通常來說,獲取唯一值,既可以用distinct也可以用group by,但在存在主鍵時,group by會做相應的優(yōu)化,把多個分組鍵規(guī)約為主鍵.
沒有主鍵的情況

[pg12@localhost ~]$ psql
Expanded display is used automatically.
psql (12.2)
Type "help" for help.
[local:/data/run/pg12]:5120 pg12@testdb=# create table tbl1 (id int,c1 text,c2 int,c3 varchar);
CREATE TABLE
[local:/data/run/pg12]:5120 pg12@testdb=# insert into tbl1 (id,c1,c2,c3) select x,x||'c1',x,x||'c3' from generate_series(1,100000) as x;
INSERT 0 100000
[local:/data/run/pg12]:5120 pg12@testdb=# explain select distinct id,c1,c2,c3 from tbl1;
                            QUERY PLAN                            
------------------------------------------------------------------
 HashAggregate  (cost=1668.94..1720.54 rows=5160 width=72)
   Group Key: id, c1, c2, c3
   ->  Seq Scan on tbl1  (cost=0.00..1152.97 rows=51597 width=72)
(3 rows)
[local:/data/run/pg12]:5120 pg12@testdb=# explain select id,c1,c2,c3 from tbl1 group by id,c1,c2,c3;
                            QUERY PLAN                            
------------------------------------------------------------------
 HashAggregate  (cost=1668.94..1720.54 rows=5160 width=72)
   Group Key: id, c1, c2, c3
   ->  Seq Scan on tbl1  (cost=0.00..1152.97 rows=51597 width=72)
(3 rows)

存在主鍵的情況

[local:/data/run/pg12]:5120 pg12@testdb=# alter table tbl1 add primary key(id);
'ALTER TABLE
[local:/data/run/pg12]:5120 pg12@testdb=# explain select distinct id,c1,c2,c3 from tbl1;
                               QUERY PLAN                                
-------------------------------------------------------------------------
 Unique  (cost=14043.82..15293.82 rows=100000 width=72)
   ->  Sort  (cost=14043.82..14293.82 rows=100000 width=72)
         Sort Key: id, c1, c2, c3
         ->  Seq Scan on tbl1  (cost=0.00..1637.00 rows=100000 width=72)
(4 rows)
[local:/data/run/pg12]:5120 pg12@testdb=# explain select id,c1,c2,c3 from tbl1 group by id,c1,c2,c3;
                                     QUERY PLAN                                      
-------------------------------------------------------------------------------------
 Group  (cost=0.29..5402.29 rows=100000 width=72)
   Group Key: id
   ->  Index Scan using tbl1_pkey on tbl1  (cost=0.29..5152.29 rows=100000 width=72)
(3 rows)
[local:/data/run/pg12]:5120 pg12@testdb=#

在存在主鍵的情況下,使用group by時,分組鍵只需要主鍵即可.

“分析PostgreSQL中的distinct和group by”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關的知識可以關注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

向AI問一下細節(jié)

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

AI