可以这样写: 指定,day,month,year:
and month(left(vs_pushed_date,10)) = month('${dates}')
and year(left(vs_pushed_date,10)) = year('${dates}'),不走索引数据量太多会卡
也可以这样写,使用dateformat 函数,拼接日期,这个比较方便,要什么样式的日期都可以,再走索引。
and PULLED_DATE >= date_format(date_sub(curdate(),interval 10 month),'%Y-%m-01')