时间:2021-07-01 10:21:17 帮助过:27人阅读
<if test="pricehigh!=null">
and price < #{pricehigh,jdbcType=INTEGER}
</if>
<select id="getItems" parameterType="com.ipro.shopping.to.IntegerEntity" resultType="itemsType">
select * from itemsType
<where>
<!--方式一使用choose的方式查询-->
<!-- <choose>
<when test="parentId !=0 ">parentTypeId=#{parentId}</when>
<when test="parentId==0">parentTypeId is null</when>
</choose> -->
<!--方式二使用if的方式查询-->
<if test="parentId!=0">
parentTypeId=#{parentId}
</if>
<if test="parentId==0">
parentTypeId is null
</if>
</where>
</select>
MyBatis动态SQL之一使用 if 标签和 choose标签
标签:start mybatis pos div soft width integer font sdn