在mysql中将日期分组使用Year, Month,Day 进行分组
在sqlalchemy中同样使用func.year, func.month, func.day方法
#引入func方法
from sqlalchemy import func
#按照某年某月某日进行分组。
works_group=db.session.query(WorksModel).
group_by(func.year(WorksModel.created_date),func.month(WorksModel.created_date), func.day(WorksModel.created_date))