Mybatis中的like模糊查询功能

网友投稿 220 2023-06-13


Mybatis中的like模糊查询功能

1.  参数中直接加入%%

param.setUsername("%CD%");

param.setPassword("%11%");

select id,sex,age,username,password from person where true

AND username LIKE #{username}

AND password LIKPWVLuE #{password}

2.  bind标签

select id,sex,age,username,password

from person

where username LIKE #{pattern}

3. CONCAT

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

以上所述PWVLu是给大家介绍的Mybatis中的like模糊查询功能,希望对大家有所帮助,如果大家有任何疑问请给我留言,会及时回复大家的。在此也非常感谢大家对我们网站的支持!


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Java使用SFTP上传文件到服务器的简单使用
下一篇:java 中 request.getSession(true、false、null)的区别
相关文章

 发表评论

暂时没有评论,来抢沙发吧~