ORACLE

select * from tableName where name like  CONCAT(CONCAT('%', #{name}),'%');

 

MYSQL

select * from tableName where name like  CONCAT('%',#{name},'%'); 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-10
  • 2021-08-26
猜你喜欢
  • 2022-01-09
  • 2021-10-04
  • 2022-12-23
  • 2021-10-18
  • 2021-12-28
  • 2022-12-23
相关资源
相似解决方案