I am doing a select on a table that has 5 columns and the sixth column is an id field that has its corresponding value in another table. So I need to perform a query that will return my results from the first table but including the corresponding value from the second table.
table1
name city country id
john chicago canada 1
paula berlin germany 4
manuel lisbon portugal 3
jean paris france 2
table2
id language
1 english
2 french
3 portuguese
so the results would be as follows
name city country id language
john chicago canada 1 english
paula berlin germany 4 german
manuel lisbon portugal 3 portuguese
jean paris france 2 french
thanks.
Start Free Trial