spring batch中MyBatisPagingItemReader分页使用介绍
2021-07-13 19:07
阅读:860
标签:inner pre ges mes isp from code aging line
假如是mysql的话,SQL语句
select * from ( SELECT so.* FROM t_tm_sales_order so where so.last_modified_time >= to_timestamp(‘2015-05-05‘,‘yyyy-mm-dd hh24:mi:ss‘) order by so.id limit #{_pagesize} OFFSET #{_skiprows} ) temp_a inner join t_tm_sales_order_line sol on temp_a.id=sol.so_id
假如是oracle的话,SQL语句
select t2.* from (select t1.*,rownum rn from (select * from a) t1 where rownum #{_skiprows}
spring batch中MyBatisPagingItemReader分页使用介绍
标签:inner pre ges mes isp from code aging line
原文地址:https://www.cnblogs.com/nizuimeiabc1/p/9541447.html
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:spring batch中MyBatisPagingItemReader分页使用介绍
文章链接:http://soscw.com/index.php/essay/104764.html
文章标题:spring batch中MyBatisPagingItemReader分页使用介绍
文章链接:http://soscw.com/index.php/essay/104764.html
评论
亲,登录后才可以留言!