I create a kind of a blog engine, where posts are categorized into month-year categories, based on timestamp. I use the following query:
SELECT MONTHNAME( post_time ) AS
month , YEAR( post_time ) AS year
FROM blog_posts
GROUP BY year,
month
ORDER BY post_time DESC
LIMIT 0 , 10
which returns me the latest ten post categories like this:
December 2010
November 2010
...
etc
My question is how do I create a query to fetch older/newer categories?
If I had a column like *category_id* I'd be able to easily use it with LIMIT, but as month and year is all I have I'm stuck.
Help greatly appreciated, this one's a riddle for me.