Get your own SQL server

SQL Statement:

 
SELECT COUNT(customer_id), country
FROM customers
GROUP BY country
HAVING COUNT(customer_id) > 5;        

Result:

 count | country
-------+---------
    13 | USA
    11 | France
     9 | Brazil
     7 | UK
    11 | Germany
(5 rows)