Re: Aggregate functions on groups - Mailing list pgsql-general

From Rich Shepard
Subject Re: Aggregate functions on groups
Date
Msg-id alpine.LNX.2.20.1908310724190.16819@salmo.appl-ecosys.com
Whole thread Raw
In response to Re: Aggregate functions on groups  (Morris de Oryx <morrisdeoryx@gmail.com>)
List pgsql-general
On Sat, 31 Aug 2019, Morris de Oryx wrote:

> Your tributaries and fish master tables make sense. If I read your code
> right, you're grouping by too many columns. I flattened the data into a
> survey table for this simple example:

Morris,

I'm still learning about postgres groups. My approach is to group on the
column of interest, then add more when psql tells me to do so.

> select tributary,
>       common_name,
>       scientific_name,
>       sum(count_value) as fish_seen,
>       count(count_value) as observations_made
>
>   from survey
>
>   group by 1,2,3 -- The GROUP BY clause can use positions on the select
> list, if you feel like typing less.

I will look more at this approach; at first glance it appears to address one
query but not all those needed.

> But this is not why I'm answering. I'm responding as I wanted to make sure
> that you're aware of the pg-similarity extension:
> https://salsa.debian.org/postgresql/pg-similarity

Thanks for the URL. I'll definintely read about similarity.

Regards,

Rich



pgsql-general by date:

Previous
From: stan
Date:
Subject: Re: Problems with using function input paramaters
Next
From: "David G. Johnston"
Date:
Subject: Re: Problems with using function input paramaters