码迷,mamicode.com
首页 > 数据库 > 详细

mybatis的动态sql

时间:2020-04-23 22:45:29      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:student   lis   uname   app   set   动态sql   code   避免   style   

1.if 标签

  注意:where 1=1是为了避免当uId不传值时,会导致生成bad sql

<select id="getStuByIf" resultType="com.itheima.pojo.TbStudent" parameterType="com.itheima.pojo.TbStudent">
    select * from tb_student where 1=1
    <if test="uId!=null and uId!=‘‘ ">
     and   u_id=#{uId}
    </if>

    <if test="uName!=null and uName!=‘‘">
        and    u_name=#{uName}
    </if>

    <if test="sex!=null and sex!=‘‘">
        and  sex=#{sex}
    </if>

    <if test="tId!=null and tId!=‘‘">
        and    t_id=#{tId}
    </if>
</select>
  TbStudent student = new TbStudent();
     //   student.setuId(2);
        student.setuName("lisi");
        student.setSex("男");
        List<TbStudent> stu = tbStudentMapper.getStuByIf(student);
        System.out.println(stu);



 Preparing: select * from tb_student where 1=1 and u_name=? and sex=?

 

2.where 标签

  改进if标签

<select id="getStuByIf" resultType="com.itheima.pojo.TbStudent" parameterType="com.itheima.pojo.TbStudent">
    select * from tb_student
    <where>
    <if test="uId!=null and uId!=‘‘ ">
       and  u_id=#{uId}
    </if>

    <if test="uName!=null and uName!=‘‘">
        and    u_name=#{uName}
    </if>

    <if test="sex!=null and sex!=‘‘">
        and  sex=#{sex}
    </if>

    <if test="tId!=null and tId!=‘‘">
        and    t_id=#{tId}
    </if>
    </where>
</select>

 

mybatis的动态sql

标签:student   lis   uname   app   set   动态sql   code   避免   style   

原文地址:https://www.cnblogs.com/liudingwei/p/12764081.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!