mybatis中动态sql语句的实际应用场景是怎么样的,比如说if,具体在什么情况下可以使用,给高分,谢谢! 20
1个回答
展开全部
<where>
<trim prefixOverrides="and">
<if test="id!=null">
and c.id=#{id}
</if>
<if test="oid!=null and oid!=0">
and b.id=#{oid}
</if>
<if test="startDate!=null">
<if test="endDate!=null">
and a.pay_time BETWEEN #{startDate} AND #{endDate}
</if>
</if>
</trim>
</where>
service层如果参数为null,mybatis执行sql语句的时候就不会去拼接你指定的if标签中的sql语句
<trim prefixOverrides="and">
<if test="id!=null">
and c.id=#{id}
</if>
<if test="oid!=null and oid!=0">
and b.id=#{oid}
</if>
<if test="startDate!=null">
<if test="endDate!=null">
and a.pay_time BETWEEN #{startDate} AND #{endDate}
</if>
</if>
</trim>
</where>
service层如果参数为null,mybatis执行sql语句的时候就不会去拼接你指定的if标签中的sql语句
追问
这个是用法,我问应用场景额
追答
你知道了用法 还不知道在什么情况下去用么 ...
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询