工作中使用到了为动态sql语句的某些字段添加模糊查询,特此记录。 SELECT "查询数据" FROM "表名" [后面可以直接使用where添加筛选条件,需要注意的是如果直接使用where则需要删除"<where></where>"标签,不删除<if></if>标签以及内容] <where> <if test="modelName!=null and !''.equals(modelName)"> and ...
他是在#{}表达式自动填入value值,值得注意的是“_parameter.getEmp_name()” 调用的方法是对象中作为查询参数的属性的get方法 多条件查询 多种条件查询的要点是判断查询条件是否为空,拼接sql语句。在mybatis中提供了if标签和where 标签。 下面来介绍两种标签的用法。 if标签 SELECT * FROM oa_employee WHERE 1=1...
teacherName like #{name} and birth_date < #{birth} and getTeacherByIdIn(Listids); --> SELECT * FROM t_teacher WHERE id IN #{id_item} getTeacherByConditionChoose(Teacher teacher); --> select * from t_teacher id=#{id} teacherName=#{name} birth_date = #{birth} 1=1 实例、 selec...