美文网首页
quartz转移数据

quartz转移数据

作者: hemingkung | 来源:发表于2019-04-08 09:52 被阅读0次

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

    相关文章

      网友评论

          本文标题:quartz转移数据

          本文链接:https://www.haomeiwen.com/subject/syoyiqtx.html