mysql: select * from test where school_name like concat('%',${name},'%')  

oracle: select * from test where school_name like '%'||${name},'%'  

SQL Server:select * from test where school_name like '%'+${name},+'%'

相关文章:

  • 2021-12-04
  • 2021-07-05
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-30
  • 2021-05-31
  • 2021-09-22
相关资源
相似解决方案