mybatis+oracle实现简单的模糊查询

第一种 concat

select * from cat_table where cat_name like concat(#{catName},‘%‘)      --单个百分号
select * from cat_table where cat_name like concat(concat(‘%‘,#{catName}),‘%‘)    --前后百分号

第二种 ||

select * from cat_table where cat_name like ‘%‘ || #{catName} || ‘%‘ 

 第三种 instr

select * from cat_table where instr(#{catName},‘helloworld‘)>0

 

mybatis+oracle实现简单的模糊查询

上一篇:MySQL数据库分页语句


下一篇:MySQL中的JSON函数(二)查询JSON函数