You can concatenate strings separated by delimiter using the string_agg() function.
If your individuals table is:
NameAgeCountryAllie15USAAmanda14USAAlana20Russia
You could write SELECT ... GROUP BY statement to get names from each country:
SELECT string_agg(name, ', ') AS names, country
FROM ...