对不起这个问题
对不起这个问题对不起这个问题
这个子查询:
(select b.country_name from mydatabase.country_codes as a left join mydatabase.countries as b
on a.country_code = b.country_code
where b.language_code = 'EN') as c
不要给我们所需的c.country_code
,所以将它添加到这个查询中
您在子查询中只选择了 country_name,但没有选择 country_code,这就是您以后不能使用它的原因