1. 程式人生 > >【mybatis】模糊查詢

【mybatis】模糊查詢

最近專案中遇到mybatis模糊查詢,專案使用SSM框架,如下:

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