<select id="getEmpListByCondition" resultType="com.sun.bean.Emp">
select *from emp where 1=1
<if test="name != null and name != ''">
and name like concat('%',#{name},'%')
</if>
<if test="gender != null and gender != ''">
and gender = #{gender}
</if>
<if test="joinDate!=null">
and join_date=#{joinDate}
</if>
</select>
例如这样:
动态组装sql语句,多条件查询emp对象信息,可以通过姓名、性别、加入工作的时间组合查询,我根据emp对象的姓名和性别来查动态生成的语句是组合了姓名的模糊查询和性别
@Test
public void getEmpListByCondition() throws ParseException {
EmpMapper mapper = sqlSession.getMapper(EmpMapper.class);
SimpleDateFormat simpleDateFormat=new SimpleDateFormat("yyyy-MM-dd");
Date date = simpleDateFormat.parse("2020-01-01");
Emp emp = new Emp();
emp.setName("小明");
emp.setGender("男");
// emp.setJoinDate(date);
List<Emp> empList = mapper.getEmpListByCondition(emp);
System.out.println("empList = " + empList);
}
如果我加入了入职时间,则SQL语句是这样的
通过上面的特使,我们可以发现,if标签就是每一句都会进行判断,满足条件就动态组装,不满足条件就不组装
where标签
where和if一般结合使用:
a>若where标签中的if条件都不满足,则where标签没有任何功能,即不会添加where关键字
b>若where标签中的if条件满足,则where标签会自动添加where关键字,并将条件最前方多余的
and去掉
注意:where标签不能去掉条件最后多余的and
<select id="getEmpListByMoreTJ2" resultType="Emp">
select * from emp
<where>
<if test="name != null and name != ''">
and name like concat('%',#{name},'%')
</if>
<if test="gender != null and gender != ''">
and gender = #{gender}
</if>
<if test="joinDate!=null">
and join_date=#{joinDate}
</if>
</where>
</select>
例如这样:
动态组装sql语句,多条件查询emp对象信息,可以通过姓名、性别、加入工作的时间组合查询,当我什么都不传的时候,没有条件满足,where标签没有什么作用,不会动态添加where关键字
但是一旦有条件满足,则where会加载第一个满足条件的语句前面,并且去掉该语句前面的and,也就是说where只加在满足条件的第一个语句前,并且去掉满足条件的第一个语句的and,其余不管。
trim(基本不使用,不做介绍)
choose、when、otherwise
when相当于if...else if..else
otherwise相当于else,当所有的when条件都不满足的时候,就会执行otherwise里面的语句
综上所述,上面都是选择语句,相当于java的if if...else else语句,当所有语句只执行一个条件的时候,无须在语句前面加上and,例如choose when otherwise,但是在每一个条件都会进行比较并动态组装的时候,就要在每一句前面加上and,例如<if>
foreach
foreach元素用于迭代集合或数组,并在迭代过程中执行相应的SQL语句。它通常用于动态生成SQL语句中的IN子句,以便根据集合或数组的元素动态构建SQL查询条件。
下面演示一个插入语句
接下来演示删除语句
接下来演示一个查询
通过上面的实验可以证明:其实我们的foreach语句的写法无论是增删改查,核心部分的代码写法都差不多,无论我们传递的是List集合还是数组,写法都是一样的。