SELECT DISTINCT country FROM users;
SELECT country FROM users GROUP BY country;
SELECT country, COUNT(*) FROM users GROUP BY country;
SELECT country, COUNT(*) FROM users GROUP BY country HAVING COUNT(*) > 2;
For further actions, you may consider blocking this person and/or reporting abuse
Daniel Chapman -
yukaty -
Max Moreno -
Shikha Gupta -
Top comments (0)