I have a column in a MySQL table called year.

I want to check how many rows I have for each DISTINCT year.

This:

SELECT DISTINCT year FROM `table`

Gets each year, but how do I hook each year inside of a COUNT statement? Do I have to use a nested query?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted
SELECT COUNT(*) as total, year FROM `videos` GROUP BY year
link|improve this answer
feedback

This should work:

SELECT COUNT(year)

FROM ( SELECT DISTINCT year FROM myTable)

The subsquery in the FROM clause acts as just another data source, so you get a count of all the distinct years in the end.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.