sql查询rownum下标不对导致结果不正确

时间:2021-07-01 16:44:29

最近碰到个问题:页面表格中的实际展示数量和页脚展示的数量不一致,通过日志发现sql语句中的一个参数错误,但是debug时,参数却是正确的,只是到sql执行时参数变了。经过仔细寻找,终于发现问题所在,先看sql:

SELECT * FROM
(SELECT B.*, ROWNUM RN FROM
(SELECT *
FROM tableName1 u
LEFT JOIN tableName2 ur
ON u.id= ur.id
AND ur.code= #{code, jdbcType=VARCHAR}
<where>
<if test="codes != null and codes.size() > 0 ">
AND u.code IN
<foreach collection="codes" item="code" index="index" open="(" separator="," close=")">
#{code}
</foreach>
</if>
<if test="status != null and status !='' ">
AND u.STATUS = #{status, jdbcType=VARCHAR}
</if>
</where>
) B
WHERE rownum &lt; = #{offset} )
WHERE RN &gt; #{index}

原因即为两个参数相同了,第一个index会随着codes的size而变化,覆盖掉了java代码中传过来的固定的index的值,导致最后查询结果数量不对。

将第一个红色的index改成其他的参数即可,例如:

SELECT * FROM
(SELECT B.*, ROWNUM RN FROM
(SELECT *
FROM tableName1 u
LEFT JOIN tableName2 ur
ON u.id= ur.id
AND ur.code= #{code, jdbcType=VARCHAR}
<where>
<if test="codes != null and codes.size() > 0 ">
AND u.code IN
<foreach collection="codes" item="code" index="cursor" open="(" separator="," close=")">
#{code}
</foreach>
</if>
<if test="status != null and status !='' ">
AND u.STATUS = #{status, jdbcType=VARCHAR}
</if>
</where>
) B
WHERE rownum &lt; = #{offset} )
WHERE RN &gt; #{index}

后续开发写sql时,一定要注意参数的命名,给自己长个记性。