首页 > 其他 > 详细

实训--mybatics--之模糊查找-concat

时间:2018-07-18 01:07:30      阅读:213      评论:0      收藏:0      [点我收藏+]

mysql 模糊查询 concat()
2017年02月08日 10:27:43
阅读数:15861
concat() 函数,是用来连接字符串。

精确查询: select * from user where name=”zhangsan”
模糊查询; select * from user where name like “%zhang%”

在实际的使用中,条件是作为参数传递进来的。 所以我们使用 concat() 函数

mybatis:
select * from user where name like concat(“%”, #{name},”%”)

concat(str1,str2,str3,str4,……….); 连接字符串函数,会生成一个字符串

实训--mybatics--之模糊查找-concat

原文:https://www.cnblogs.com/czy16/p/9326929.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!