码迷,mamicode.com
首页 > 其他好文 > 详细

xml中模糊查询

时间:2020-05-25 17:23:33      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:模糊   div   sel   style   nbsp   查询   name   like   select   

 

xml中where中的查询
select * from a
<where>
<!-- 模糊查询 -->
<if test="name" !=null || name != "">
and name like ‘%‘||#{name}||‘%‘
</if>
<if test="age" !=null || age!= "">
and name = #{age}
</if>
</where>

 

xml中模糊查询

标签:模糊   div   sel   style   nbsp   查询   name   like   select   

原文地址:https://www.cnblogs.com/lidar/p/12957980.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!