中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

分析PostgreSQL中的distinct和group by

發布時間:2021-11-05 11:01:59 來源:億速云 閱讀:583 作者:iii 欄目:關系型數據庫

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

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

[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”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

偃师市| 贺兰县| 济源市| 商洛市| 赞皇县| 博野县| 梁河县| 道孚县| 桑植县| 怀来县| 阳原县| 永兴县| 侯马市| 芜湖县| 水城县| 奈曼旗| 遂平县| 锡林郭勒盟| 屯门区| 乡城县| 长武县| 彰化市| 江阴市| 苍南县| 林甸县| 屏东县| 岫岩| 广州市| 光山县| 蒙城县| 珲春市| 高密市| 香港| 抚宁县| 疏附县| 泾阳县| 平潭县| 关岭| 谷城县| 遵义县| 芦溪县|