0

我有一个任务,我需要使用 mySQL 中的世界数据库来查找政府形式为任何类型的君主制国家的 5 个最大城市及其国家。我正在尝试使用 distinct 子句,唯一正确的信息是政府专栏。其他一切都是为了印度。有人有想法吗?

select distinct city.name, governmentform, city.population, countrycode
from country, city
where governmentform like='%monarchy%'
order by city.population desc
limit 5;
4

0 回答 0