

解决方法:
<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操作了


