本篇内容介绍了“分析PostgreSQL中的distinct和group by”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

通常来说,获取唯一值,既可以用distinct也可以用group by,但在存在主键时,group by会做相应的优化,把多个分组键规约为主键.
没有主键的情况

[pg12@localhost~]$psqlExpandeddisplayisusedautomatically.psql(12.2)Type"help"forhelp.[local:/data/run/pg12]:5120pg12@testdb=#createtabletbl1(idint,c1text,c2int,c3varchar);CREATETABLE[local:/data/run/pg12]:5120pg12@testdb=#insertintotbl1(id,c1,c2,c3)selectx,x||'c1',x,x||'c3'fromgenerate_series(1,100000)asx;INSERT0100000[local:/data/run/pg12]:5120pg12@testdb=#explainselectdistinctid,c1,c2,c3fromtbl1;QUERYPLAN------------------------------------------------------------------HashAggregate(cost=1668.94..1720.54rows=5160width=72)GroupKey:id,c1,c2,c3->SeqScanontbl1(cost=0.00..1152.97rows=51597width=72)(3rows)[local:/data/run/pg12]:5120pg12@testdb=#explainselectid,c1,c2,c3fromtbl1groupbyid,c1,c2,c3;QUERYPLAN------------------------------------------------------------------HashAggregate(cost=1668.94..1720.54rows=5160width=72)GroupKey:id,c1,c2,c3->SeqScanontbl1(cost=0.00..1152.97rows=51597width=72)(3rows)

存在主键的情况

[local:/data/run/pg12]:5120pg12@testdb=#altertabletbl1addprimarykey(id);'ALTERTABLE[local:/data/run/pg12]:5120pg12@testdb=#explainselectdistinctid,c1,c2,c3fromtbl1;QUERYPLAN-------------------------------------------------------------------------Unique(cost=14043.82..15293.82rows=100000width=72)->Sort(cost=14043.82..14293.82rows=100000width=72)SortKey:id,c1,c2,c3->SeqScanontbl1(cost=0.00..1637.00rows=100000width=72)(4rows)[local:/data/run/pg12]:5120pg12@testdb=#explainselectid,c1,c2,c3fromtbl1groupbyid,c1,c2,c3;QUERYPLAN-------------------------------------------------------------------------------------Group(cost=0.29..5402.29rows=100000width=72)GroupKey:id->IndexScanusingtbl1_pkeyontbl1(cost=0.29..5152.29rows=100000width=72)(3rows)[local:/data/run/pg12]:5120pg12@testdb=#

在存在主键的情况下,使用group by时,分组键只需要主键即可.

“分析PostgreSQL中的distinct和group by”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!