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

posted @ 2019-01-18 17:11  明天,你好啊  阅读(175)  评论(0编辑  收藏  举报