i have two table
'ga_mise_en_stage' alias 'm'
and 'ga_annee_academique' alias 'ac'
, and
on 'ga_annee_academique'
there is foreign key that point to 'ga_mise_en_stage'
.
It is difficult for me to make query to retrive m.code_mise_stage, m.Libelle and all ac.annee_academique that related to m.code_mise_stage in the same ligne
schema for ga_mise_en_stage : code_mise_enstage(pk), libelle
schema for ga_annee_academique : code_annee_academique(pk), annee_academique, code_mise_en_stage(fk)
I want comma seperated result for
m.*, "ac.annee_academique, ..."