我有一堆包含新闻的表,所有这些都有发布日期,因此我想检索与博客中的某些菜单类似的结果:按年份排序,逐年按月排序,以及按月计算。
2014
January
news1
news2
February
March
2013
January
etc..
像blogspot那样的菜单
SELECT publishedon FROM News where parent=9999 group by publishedon;
我也使用PHP,但我认为我不能将它从mysql中分组。