1. select year(CreatTime) 年,
    2. month(CreatTime) 月,
    3. COUNT(1) as 数量
    4. from iwebsoft_news
    5. where year(CreatTime)='2020' and isRecyle=0
    6. group by year(CreatTime),
    7. month(CreatTime)
    8. order by month(CreatTime)