转移数据时的查询sql
功能:
查询出当前时间节点 5个月以前的 最近的100条数据
month = 5
count = 100
select
*
from t_store_in where
PERIOD_DIFF( date_format( now( ) , '%Y%m' ) ,
date_format( last_update, '%Y%m' ) ) >= #{month} limit #{count}
网友评论