GroupBy Parameter (Select-PostgreSQL Cmdlet)
A comma-separated list of columns that the result set will be grouped by.
Syntax
Select-PostgreSQL -GroupBy string
Remarks
The comma-separated list of columns to aggregate the values of and execute a summary function over. Specify the summary function in the Columns parameter with the same syntax you would use for an SQL statement. For example:
Select-PostgreSQL -Connection $conn -Table "postgres"."schema01".Orders -Columns @("ShipCity","SUM(Freight)") -GroupBy "ShipCity" -Where "ShipCountry = 'USA'"