I have a table to entities (lets call them people) and properties (one person can have an arbitrary number of properties). Ex:
Name Age ---
SELECT x.name,(select GROUP_CONCAT(y.Properties SEPARATOR ', ') FROM PROPERTIES y WHERE y.name.=x.name ) as Properties FROM mst_People x
try this