Home > Mobile >  sum specific values in table postgres
sum specific values in table postgres

Time:04-12

So I am new to postgres and having some issues, this is my table: enter image description here

I would like a query to return the table in this format:

enter image description here

I would like the area to be distinct with the sum of all sales in area1 and for area2, any help is appreciated.

CodePudding user response:

You need GROUP BY

SELECT
  Area,
  SUM(sales) AS "sales"
FROM myTable
GROUP BY area
ORDER BY area;
  • Related