Parameter 'name' not found. Available parameters are [arg1, arg0, param1, param2]

技术分享图片技术分享图片

解决方法:

<select id="selectIf" resultType="student">
SELECT id,name,age,score
FROM t_student
WHERE 1=1
<if test="arg0 != null and arg0 !=‘‘">
AND name LIKE ‘%‘ #{arg0} ‘%‘
</if>
<if test="arg1>=0">
AND age >= #{arg1}
</if>

</select>

出现异常情况:技术分享图片

技术分享图片

技术分享图片

技术分享图片

技术分享图片

如果用where就不用写1=1操作了

技术分享图片

技术分享图片

技术分享图片

 

文章来自:https://www.cnblogs.com/Koma-vv/p/10358566.html
© 2021 jiaocheng.bubufx.com  联系我们
ICP备案:鲁ICP备09046678号-3