按年份按月份统计
按表t_case中start_time(datatime)字段和end_time(datatime)字段每个年份 每个月 出现的次数 的sql语句表结构
id start_time end_time
1 2015-2-1 null
2 2015-2-2 2015-6-6
3 2014-1-1 2015-2-3
4 2011-3-2 2014-1-12
结果为
year month startsum endsum
2011 3 1 0
2014 1 1 1
2015 2 2 1
2015 6 0 1
求这个查询的sql谢谢了