首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > oracle >

怎么用sql语句返回近一年中每月的数据统计

2012-01-01 
如何用sql语句返回近一年中每月的数据统计?比如,有个表中有个date字段,如何用sql返回近一年中每个月的数据

如何用sql语句返回近一年中每月的数据统计?
比如,有个表中有个date字段,如何用sql返回近一年中每个月的数据量count(*),能用sql语句做到吗?谢谢大家帮忙..

[解决办法]
select to_char(date1, 'yyyy/mm '),count(*) from table1
group by to_char(date1, 'yyyy/mm ')
[解决办法]
近一年的就

select to_char(foccurdate, 'yyyy/mm ') d,count(*) c from wz_enterbill eb
where eb.foccurdate> =add_months(sysdate,-11)
group by to_char(foccurdate, 'yyyy/mm ')

热点排行