Skip to content

Instantly share code, notes, and snippets.

@sovietsinner
sovietsinner / gist:e01fcd910dfc76bb06cbb3902da2047d
Created July 17, 2020 16:15
World Populations SQL Practice 1
SELECT DISTINCT year from population_years;
SELECT *
FROM population_years
WHERE country IS "Gabon"
ORDER BY population DESC
LIMIT 1;
SELECT *
FROM population_years