spring batch中MyBatisPagingItemReader分页使用介绍
2021-07-13 19:07
标签:inner pre ges mes isp from code aging line 假如是mysql的话,SQL语句 假如是oracle的话,SQL语句 spring batch中MyBatisPagingItemReader分页使用介绍 标签:inner pre ges mes isp from code aging line 原文地址:https://www.cnblogs.com/nizuimeiabc1/p/9541447.htmlselect * 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
select t2.* from
(select t1.*,rownum rn from
(select * from a) t1 where rownum #{_skiprows}
文章标题:spring batch中MyBatisPagingItemReader分页使用介绍
文章链接:http://soscw.com/index.php/essay/104764.html