首页 > 学院 > 开发设计 > 正文

mysql 模糊查询 concat()

2019-11-08 21:00:16
字体:
来源:转载
供稿:网友

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,……….); 连接字符串函数,会生成一个字符串


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表