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;