quartz转移数据

2019-04-08  本文已影响0人  hemingkung

转移数据时的查询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}

上一篇下一篇

猜你喜欢

热点阅读