'sum specific values in table postgres

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.



Solution 1:[1]

You need GROUP BY

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

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1