PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Requête Postgres complexe

Tout ce que vous avez à faire est d'exécuter une requête agrégée :

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 

Maintenant, vous demandez :où est la colonne Corridor ? La réponse est :utilisez la fonction string_agg :

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