没用过,一直用SQL,关注一下!
配合日期函数:
select to_char(create_date,'yyyy-mm'),count(*) from mdl
where create_date >= to_date(to_char(sysdate,'yyyy-mm')||'-01','yyyy-mm-dd')
and create_date < add_months(to_date(to_char(sysdate,'yyyy-mm')||'-01','yyyy-mm-dd'),1)
group by to_char(create_date,'yyyy-mm')