mybatis like 模糊查询写法 使用方法
mybatis中使用like进行查询,写法如下
mysql数据库,连接字符串使用concat函数
select * from tb_user where title like CONCAT('%',#{title},'%')
postgresql数据库,连接字符串使用||
select * from tb_user where title like '%'||#{title}||'%'
oracle数据库写法
select * from tb_user where title like CONCAT('%',#{title},'%') select * from tb_user where title like '%'||#{title}||'%'
SQLServer数据库,连接字符串用+
select * from tb_user where title like '%'+#{title}+'%'
来源://作者:/更新时间:2014-05-27
顶
踩
相关文章: