如何找到每个大陆人口最多的前 5 个国家。我只想使用下面的 1 个表格:
网址: http ://dev.mysql.com/doc/index-other.html
数据库:世界数据库(MyISAM 版本,用于 MySQL 认证和培训)
以下是我想出的:
select Continent,
substring_index(
GROUP_CONCAT(distinct cast(Name as char)), ',', 5)
From
country
group by
Continent,Name;
谢谢,里约