mybatis做like模糊查詢

weixin_34120274發表於2016-10-14

這個網站中有很多方法。https://code.google.com/p/mybatis/issues/detail?id=85

自己試驗瞭如下的方法。

 

1.  引數中直接加入%%

  param.setUsername("%CD%");       param.setPassword("%11%");

	<select  id="selectPersons" resultType="person" parameterType="person">
		select id,sex,age,username,password from person where true 
			<if test="username!=null"> AND username LIKE #{username}</if>
			<if test="password!=null">AND password LIKE #{password}</if>
	
	</select>

2.  bind標籤

<select id="selectPersons" resultType="person" parameterType="person">
  <bind name="pattern" value="'%' + _parameter.username + '%'" />
  select id,sex,age,username,password 
  from person
  where username LIKE #{pattern}
</select>

3. CONCAT

where username LIKE concat(cancat('%',#{username}),'%')

相關文章