Using data from two tables

Report a typo

Suppose you have two tables, a table with countries and a table with languages, each of which has two columns: [country_id, country_name] and [country_id, language]. Why will the following query result in an error?

SELECT c.country_name AS country,
       l.language AS language
FROM countries AS c 
INNER JOIN languages AS l;
Select one option from the list
___

Create a free account to access the full topic