zl程序教程

您现在的位置是:首页 >  后端

当前栏目

【mybatis】模糊查询

mybatis 查询 模糊
2023-09-11 14:21:26 时间

最近项目中遇到mybatis模糊查询,项目使用SSM框架,如下:

<select id="selectByName" parameterType="String" resultType="company">  
  select * from company c where c.name like "%"#{name}"%";  
</select>