我可以在MySQL DATETIME
字段中按月分组吗?还是必须创建仅包含月份和年份的单独字段?
你可以喜欢这个
select month(datetime_field)
from your_table
group by month(datetime_field)