<select id="queryInjuredCase" resultMap="BaseResultMap">
SELECT aa.* FROM (SELECT a.*,rownum rn FROM
(SELECT *
FROM INJURED_CASE
where 1 = 1 AND status = 1
<if test="qicp != null">
<if test="qicp.vinNum != null and qicp.vinNum != ''">
and VIN like '%${qicp.vinNum}%'
</if>
<if test="qicp.plateNum != null and qicp.plateNum != ''">
and PLATE_NUM like '%${qicp.plateNum}%'
</if>
</if>
order by create_date desc)a)aa
WHERE aa.rn <= #{endRow} and aa.rn > #{startRow}
</select>
相关文章
- 12-15easyui 分页加条件查询
- 12-15基于spring data jpa封装带有动态分页查询、动态条件求和的基础service类和基础controller类
- 12-15SQL分页存储过程(不支持多表联合查询,不支持多字段排序)
- 12-15带查询参数 可分页 的 T-SQL 语句写法
- 12-15MybatisPlus自定义sql使用分页查询,同时使用条件构造器
- 12-15spring jpa Pageable 分页之---多条件排序
- 12-15实现带条件查询
- 12-15JPA分页查询与条件分页查询
- 12-15springboot中JPA的各种排序方式+分页+关键字查询
- 12-15jpa条件查询与分页条件查询