在mybatis下對oracle數據庫使用模糊查詢時,舉個例子mysql
select * from b where name like '%'||#{name}||'%'
2.在mybatis下對mysql數據庫使用模糊查詢時,舉個例子sql
select * from b where name like '%${name}%' 這裏就必需要把#改成$