orcal分页查询带条件排序
Posted lazyli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了orcal分页查询带条件排序相关的知识,希望对你有一定的参考价值。
<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>
以上是关于orcal分页查询带条件排序的主要内容,如果未能解决你的问题,请参考以下文章
MongoDB使用: 条件操作,排序,索引,分页查询,聚合函数