spring batch中MyBatisPagingItemReader分页使用介绍

2021-07-13 19:07

阅读:749

标签: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


评论


亲,登录后才可以留言!