Yes, since ypercube noted that this is possible, and you will need the SUBSTRING_INDEX function. You will also need to regenerate rows that are complex since mysql does not support recursive queries.
You can make a workaround, here is a solution assuming a maximum of 3 entries to just illustrate:
SELECT SUBSTRING_INDEX(name, ',', 1), address, group_id
FROM aggregated a1
WHERE
UNION ALL
SELECT SUBSTRING_INDEX(SUBSTRING_INDEX(name, ',', 2), ',', -1), address, group_id
FROM aggregated a2
WHERE name LIKE '%,%'
UNION ALL
SELECT SUBSTRING_INDEX(SUBSTRING_INDEX(name, ',', 3), ',', -1), address, group_id
FROM aggregated a3
WHERE name LIKE '%,%,%'
, , ( ): - .
, ( , , , , ).
EDIT:
group_concat ( ), . - ( ).