SQL
-- Return only countries with more than one user, with the count as `total`.
SELECT country, COUNT(*) AS total FROM users GROUP BY country;