我们想要进行条件查询,但是几个条件不是每次都要使用,那么我们就可以//通过判断是否拼接到sql中
<selectid="queryById"resultMap="BascResultMap"parameterType="entity">
SELECT*fromentity
<where>
<iftest="name!=null">namelikeconcat('%',concat(#{name},'%'))</if>
</where>
</select>
我们想要进行条件查询,但是几个条件不是每次都要使用,那么我们就可以//通过判断是否拼接到sql中
<selectid="queryById"resultMap="BascResultMap"parameterType="entity">
SELECT*fromentity
<where>
<iftest="name!=null">namelikeconcat('%',concat(#{name},'%'))</if>
</where>
</select>