猿问

oracle 的sql分页语句改成mysql的分页语句?

这是实体类
这是oracle的分页语句
<!-- 分页查询资费数据 -->
<select id="findByPage"
parameterType="com.tarena.entity.page.CostPage"
resultType="com.tarena.entity.Cost">
select * from (
select a.*,rownum r from (
select * from cost 
order by cost_id
) a
) where r>#{begin} and r<#{end}
帮我改成mysql的谢谢了




偶然的你
浏览 751回答 1
1回答

四季花海

<select id="findByPage"parameterType="com.tarena.entity.page.CostPage"resultType="com.tarena.entity.Cost">select * from costorder by cost_idLIMIT #{pageSize}&nbsp;OFFSET&nbsp;#{begin}</select>看看是不是这样第一个参数是要查询多少条记录也就是pageSize或者是end-begin
随时随地看视频慕课网APP

相关分类

MySQL
我要回答