天天看點

mybatis中模糊查詢mybatis中的模糊查詢用法之一(目前測試可适用于mysql,Oracle,db2,其他資料庫待确定)

mybatis中的模糊查詢用法之一(目前測試可适用于mysql,Oracle,db2,其他資料庫待确定)

<if test="custName != null and custName != ''">
	<bind name="custName_" value="'%'+custName+'%'"/>
           	AND cust_name like #{custName_}
</if>
           

注:在此方法中,custName是外部傳進來的字段,custName_ 是模糊查詢字段用的别名

繼續閱讀