mybatis的模糊查询格式: <select id="xxx" parameterType="com.model.xxx" resultMap="BaseResultMap"> select * from users WHERE 1=1 <if test="name != null and name != ''" > and name like CONCAT('%',#{name,jdbcType=V…
1.在 mybatis 中,模糊查询可以有以下方式 (1).第一种,直接将封装好的条件传给 sql 语句 <select id="findByName" parameterType="string" resultType="User"> select * from t_user where name like #{name} </select> 代码 @Test public void testFindLike() thr…