Advertisement
Guest User

Untitled

a guest
May 26th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. SELECT country.name AS "Country", city.name AS "City", city.population AS "Population"
  2. FROM city JOIN country ON city.countrycode = country.code WHERE city.population = (SELECT min(population) FROM city WHERE city.countrycode = country.code) ORDER BY country
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement