mybatis的模糊查询格式

阅读 26

2022-07-27

mybatis的模糊查询格式;

<select id="xxx"  parameterType="com.model.xxx"   resultMap="BaseResultMap">
select * from users WHERE 1=1
<if test="name != null and name != ''" >
and name like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
</if>

<if test="identity != null and identity != ''" >
and identity like CONCAT('%',#{identity,jdbcType=VARCHAR},'%')
</if>

<if test="phon != null and phon != ''" >
and phon like CONCAT('%',#{phon,jdbcType=VARCHAR},'%')
</if>
</select>

 



精彩评论(0)

0 0 举报