为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

偶然的你 2018-11-07 15:11:54
这是实体类这是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的谢谢了
查看完整描述

1 回答

?
四季花海

TA贡献1811条经验 获得超5个赞

<select id="findByPage"
parameterType="com.tarena.entity.page.CostPage"
resultType="com.tarena.entity.Cost">
select * from cost
order by cost_id
LIMIT #{pageSize} OFFSET #{begin}
</select>
看看是不是这样第一个参数是要查询多少条记录也就是pageSize或者是end-begin

查看完整回答
反对 回复 2018-12-06
  • 1 回答
  • 0 关注
  • 750 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信