MyBatis框架学习-动态SQL(标签)-7

拼接SQL语句字符串

1、标签

public interface DynamicSQLMapper {
   

    // 多条件查询
    List<Emp> getEmpByCondition(Emp emp);

}

使用1=1在个别参数不符合时,进行连接,跳过

<!--List<Emp> getEmpByCondition(Emp emp);   1=1 拼接后面条件 -->
    <select id="getEmpByCondition" resultType="Emp">
        select * from t_emp where 1=1
        <if test="empName != null and empName !=''">
            emp_name = #{empName}
        </if>
        <if test="age != null and age !=''">
            and age = #{age}
        </if>
        <if test="sex != null and sex !=''">
            and sex = #{sex}
        </if>
        <if test="email != null and email !=''">
            and email = #{email}
        </if>
    </select>
   @Test
    public void testGetEmpByCondition(){
   
        SqlSession sqlSession = SqlSessionUtils.getSqlSession();
        DynamicSQLMapper mapper = sqlSession.getMapper(DynamicSQLMapper.class);
        // List<Emp> list = mapper.getEmpByCondition(new Emp(null, "张三", 23, "男", "123@qq.com"));
        // List<Emp> list = mapper.getEmpByCondition(new Emp(null, "张三", null, "男", "123@qq.com"));
        List<Emp> list = mapper.getEmpByCondition(new Emp(null, null, 23, "男", "123@qq.com"));
        System.out.println(list);

    }

在这里插入图片描述

2、where标签

(1)当where标签中有内容时,会自动生成where关键字,并且将内容前多余的and 或 or 去掉

(2)当where标签中没有内容时,此时where标签没有任何效果

注意:where标签不能将其中内容后面多余的and或or去掉

<!--List<Emp> getEmpByCondition(Emp emp);   1=1 拼接后面条件 -->
    <select id="getEmpByCondition
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值