I have two tables –
Content:
Id | Name | Source | Target
---------------------------
1 | Test | en | de
2 | Test1 | en | fr
and Locale:
Locale Code | Locale Name
--------------------------
de | German
en | English
fr | French
I need all the records from Content table in the form of –
1 Test English German
2 Test1 English French
Appreciate your help with the SQL query for this.
Give this a try:
Result: