I really don't know what the title should be, but here the question I have 2 table (actually more)
table a table b
id (pk)| country id(fk)| Branch
------ | ------ ------|--------
01 | Indonesia 01 | Jakarta
01 | Bali
if i do select * from a,b where a.id=b.id
the result will be
id | Country |Branch
01 | Indonesia|Jakarta
01 | Indonesia|Bali
I want the result to be like below
id | Country | Branch
01 | Indonesia | Jakarta,Bali
Is it possible? I dont really trying to do research(i mean searching) as I don't know what keyword should I search