Group by the column you are interested in and then use count to get the number of rows in each group:
SELECT column5, COUNT(*)
FROM table1
GROUP BY column5
Group by the column you are interested in and then use count to get the number of rows in each group:
SELECT column5, COUNT(*)
FROM table1
GROUP BY column5