MyBatis模糊查询语句错误
程序员文章站
2022-06-07 15:54:46
...
在MyBatis开发中模糊查询的mapper.xml中一开始我是这样查询的
select * from table where name like concat('%',#{text},'%')
这样是不对的,正确的方法应该是使用字符拼接
select * from table where name like concat(concat('%',#{text}),'%')
或者使用${}代替#{}
select * from table where name like'%${text}%'
上一篇: Tp5 前后端分离 模糊查询
下一篇: 10 条提升 Android 性能的建议