PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Komplexe Postgres-Abfrage

Sie müssen lediglich eine aggregierte Abfrage ausführen:

select sum(t.export) as TotalExport,
sum(t.import) as TotalImport
FROM country c inner join Organization o on c.Country_Code = o.Country_Code
inner join Transaction t on o.organization_code = t.organization_code 

Jetzt fragen Sie:Wo ist die Korridorsäule? Die Antwort lautet:Verwenden Sie die string_agg-Funktion:

select string_agg(DISTINCT c.country, '-' ORDER BY c.country) as Corridor,
sum(t.export) as TotalExport,
sum(t.import) as TotalImport
FROM country c inner join Organization o on c.Country_Code = o.Country_Code
inner join Transaction t on o.organization_code = t.organization_code