PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Calcolo della somma di un campo in base ad altre colonne della tabella di join

Sembra che tu voglia solo:

Select . . .
       COALESCE(SUM(d.paid_amt) OVER (PARTITION BY c.field04), 0)  as amount_paid