Say, there are 2 tables:
Person
| id | name |
LanguagesSpoken
| person_id | language_name |
Is there a way to create a view that would contain 2 columns: person_name and languages_spoken as a comma-separated list?
I'm developing against SQLite.