I was curious about the fact, if it's possible to merge multiple columns (seperated by a comma, or something else) into one column.
So for instance, i have these tables (languages):
language_id    |   language_iso  
    1                   NL
    2                   EN
    3                   GT
    4                   EN
(Domains)
domain_id    |   domain_name  
    1                example
And another table which links the language to a webdomain
languagetodomain_id    |   languagetodomain_lang    |   languagetodomain_domain
    1                               1                            1
    2                               2                            1
    3                               4                            1
    4                               3                            1
And retrieve them in this order (ONE column as a reminder)
domain_id    |   domain_name    | TemporaryColumn
    1                example         {1,2,4,3}
 
     
    