mybatis模糊查询
Oracle数据库模糊查询
第一种方法
select from user where name like ‘%’||’张’||’%’;
第二种方法
select from user where name like ‘%张%’;
第三种方法
select * from user where name like concat(concat(‘%’,’张’),’%’)
参考博客:https://blog.csdn.net/lonely_dog/article/details/74171314