I have the following query in mysql:
SELECT title, added_on FROM title
The results looks like this:
Somos Tão J
The best bet is to group it by YEAR and then by MONTH. See below
SELECT Count(*), Date(timestamp) FROM title GROUP BY YEAR(timestamp), Month(timestamp)