Help needed - not been able to work out a simple query to perform the following task:
Table 1 - Weblink
ID Weblink Language1_ID Language2_ID
-- ---------- ------------ ------------
1 google.com 1 2
2 amazon.cn (Null) 3
3 yahoo.pl 5 1
4 webex.jp 4 (Null)
Table 2 - Language
ID Language
-- -----------
1 English
2 French
3 Chinese
4 Japanese
5 Polish
The end result I'd like to see:
ID Weblink Language
-- ---------- ---------------
1 google.com English, French
2 amazon.cn Chinese
3 yahoo.pl Polish, English
4 webex.jp Japanese
I'd like to populate all the languages into the table and merge multiple values by comma if possible.