count by group by sql code example
Example 1: sql count group by
SELECT gender, COUNT(*) FROM people GROUP BY gender;
Example 2: sql groub by count
SELECT COUNT(Id), Country
FROM Customer
GROUP BY Country
SELECT gender, COUNT(*) FROM people GROUP BY gender;
SELECT COUNT(Id), Country
FROM Customer
GROUP BY Country