COUNT finds the number of non-null values in a column.
COUNT is an aggregate function it is normally used with GROUP BY.
SELECT region, COUNT(name) FROM bbc GROUP BY region
GROUP BY region