mysql 中查询特定月份的数据 时间格式是 yyyy-mm-dd

select * from table where year(create_time)=2019 and month(create_time) in (2,3,4);

你可能感兴趣的:(mySql)