本篇內(nèi)容介紹了“分析PostgreSQL中的distinct和group by”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
創(chuàng)新互聯(lián)公司專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都網(wǎng)站建設(shè)、做網(wǎng)站、四方臺(tái)網(wǎng)絡(luò)推廣、小程序開發(fā)、四方臺(tái)網(wǎng)絡(luò)營(yíng)銷、四方臺(tái)企業(yè)策劃、四方臺(tái)品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);創(chuàng)新互聯(lián)公司為所有大學(xué)生創(chuàng)業(yè)者提供四方臺(tái)建站搭建服務(wù),24小時(shí)服務(wù)熱線:18980820575,官方網(wǎng)址:jinyejixie.com
通常來說,獲取唯一值,既可以用distinct也可以用group by,但在存在主鍵時(shí),group by會(huì)做相應(yīng)的優(yōu)化,把多個(gè)分組鍵規(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時(shí),分組鍵只需要主鍵即可.
“分析PostgreSQL中的distinct和group by”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
網(wǎng)站題目:分析PostgreSQL中的distinct和groupby
URL標(biāo)題:http://jinyejixie.com/article34/ggeese.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供云服務(wù)器、微信小程序、App設(shè)計(jì)、網(wǎng)站建設(shè)、手機(jī)網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
移動(dòng)網(wǎng)站建設(shè)知識(shí)