1. 程式人生 > >SSM模糊查詢語句

SSM模糊查詢語句

介面

	//模糊查詢使用者資訊
	public List<User> likeName(@Param("name") String name);

mapper.xml

<select id="likeName" parameterType="String" resultType="com.hp.bean.Hyou">
select*from `user` where username like "%"#{name}"%"
</select>