Simple SELECT Queries
SQL Review
SELECT city,country,population
FROM north_american_cities
WHERE country = 'Canada';SELECT *
FROM north_american_cities
WHERE country = 'United States'
ORDER BY latitude DESC;SELECT *
FROM north_american_cities
ORDER BY longitude ASC
LIMIT 6;SELECT *
FROM north_american_cities
WHERE country = 'Mexico'
ORDER BY population DESC
LIMIT 2;Last updated