mybatis模糊查询

前端之家收集整理的这篇文章主要介绍了mybatis模糊查询前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<h6 id="h6-oracle-">Oracle数据库模糊查询

第一种方法select from user where name like ‘%’||’张’||’%’;第二种方法select from user where name like ‘%张%’;第三种方法select * from user where name like concat(concat(‘%’,’张’),’%’)

参考博客:

猜你在找的Oracle相关文章