MyBatis中模糊查询的使用
使用<bind/>标签进行模糊查询
bind 元素可以从 OGNL 表达式中创建一个变量并将其绑定到上下文,bind适用于mysql,sql server,oracle
<select id="getGoodsCondition" parameterType="Goods" resultType="Goods"> select * from mall_goods <where> <if test="name!=null and name!=‘‘"> <!--name,为目标数据源取名--> <!--value,值的表达式--> <bind name="goodsName" value="‘%‘ + name + ‘%‘"/> name like #{goodsName} </if> </where> </select>
#{ }中的名字与,bind标签中的 name一致!
相关推荐
lzzyok 2020-10-10
chunianyo 2020-06-04
grantlee 2020-05-28
xjp 2020-05-26
Roka 2020-05-25
天空一样的蔚蓝 2020-05-02
nangongyanya 2020-04-19
shufen0 2020-04-14
humanbeng 2020-03-05
Alanxz 2020-03-04
liwf 2020-02-17
歆萌 2020-02-10
tianchaoshangguo 2020-01-04
julien 2020-01-02
齐天大圣数据候 2019-12-28
杨友山 2019-12-25
GavinZhera 2019-12-19
oLeiShen 2019-12-15
chunianyo 2019-12-12