This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT * | |
FROM population_years | |
WHERE country = 'Gabon' | |
ORDER BY population ASC; | |
SELECT * | |
FROM population_years | |
WHERE year = 2005 | |
ORDER BY population ASC | |
LIMIT 10; |