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
Steve Sanders -
Dmitry Romanoff -
Aditi Bindal -
Anwar -
Top comments (0)