jdbcTemplate 的 like 占位查询?使用
Oracle
select * from table where col like '%'||?||'%'
Mysql
select * from table where col like concat('%',?,'%')
Oracle
select * from table where col like '%'||?||'%'
Mysql
select * from table where col like concat('%',?,'%')
评论区