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

Comment sélectionner les données de la table enfant dans PostgreSQL ?

Une nouvelle fonctionnalité dans PostgreSQL 9.2 mais je n'ai pas testé la requête :

Je suis le tutoriel de ici .

select row_to_json(t)
from (
select ParentTable.parentTableFirstProp, (
select array_to_json(array_agg(row_to_json(child)))
  from (
    select childTableFirstProp
    from ChildTable
    where ChildTable.id=ParentTable.parentToChildReference
  ) child

  ) as parentToChildReference
from ParentTable
) t