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
Sam -
Dmitry Romanoff -
Antonio Silva -
Chijioke Osadebe -
Top comments (0)