Mybatis之动态SQL

动态sql

sql和include

在我们写sql语句时,我们发现,映射文件中有部分代码的重复效率较高,因此我们可以使用<SQL>标签将重复代码抽取出来,当使用时,之基引用即可。

   <!--  sql片段  -->
    <sql id="user_fields">
        u.id id,
        u.username,
        u.`password`,
        u.birthday,
        u.phone,
        u.address
    </sql>

    <select id="findUserById" resultType="User" parameterType="int">
        select
           <!--  引用sql片段  -->
           <include refid="user_fields"/>
        from user u where u.id = #{id}
    </select>

if和where【判断】

场景:模糊查询时,当没有传入关键词时,SQL语句就不再拼接。

UserMapper接口

/**
  * 更新用户信息
  */
List<User> findUserByKeyword(String keyword);

UserMapper.xml文件

   <!--  模糊查询测试  -->
    <select id="findUserByKeyword" parameterType="String" resultType="User">
        select * from user
        <!--
            当下方if中判断成立,此处会自动拼接where关键词,以及if内的内容
            当下方if中判断失败,则不拼接任何东西,包括where关键词
        -->
        <where>
            <if test="keyword != null and keyword != ''">
                username like concat('%',#{keyword},'%')
            </if>
        </where>
    </select>

注意:在sql语句中,我们不再拼写where关键字,因为<where>标签就相当于给我们自动拼接了where关键字

测试单元

   @Test
    public void findByKeyword() throws IOException {

        String resource = "mybatis-config.xml";
        InputStream inputStream = Resources.getResourceAsStream(resource);
        SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);

        SqlSession sqlSession = sqlSessionFactory.openSession( );

        UserMapper mapper = sqlSession.getMapper(UserMapper.class);
        List<User> list = mapper.findUserByKeyword("a");
        System.out.println(list );
    }

foreach【循环遍历】

使用场景:批量的操作数据。如:查询id为1,2,3的用户。

基本的sql语句:

select * from user where id in(1,2,3);

UserMapper接口

List<User> findUserByList(List<Integer> ids);

UserMapper.xml文件

<select id="findUserByList" parameterType="List" resultType="User">
        select * from user where id in
        <!--
            foreach 开始遍历
            collection 要遍历的集合,此处不是接口中参数名,必须是list
            item     遍历的得到到变量
            open  拼接左括号(
            close 拼接右括号 )
            separator 拼接变量间分隔符
        -->
        <foreach collection="list" item="id" open="(" close=")" separator=",">
            #{id}
        </foreach>
    </select>

注意:标签内collection是要遍历的集合,此处不是接口中参数名,必须是list

测试单元

   @Test
    public void findByKeyword() throws IOException {

        String resource = "mybatis-config.xml";
        InputStream inputStream = Resources.getResourceAsStream(resource);
        SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);

        SqlSession sqlSession = sqlSessionFactory.openSession( );

        UserMapper mapper = sqlSession.getMapper(UserMapper.class);
       ArrayList<Integer> ids = new ArrayList<Integer>( );
        ids.add(1);
        ids.add(2);
        ids.add(3);
        List<User> list = mapper.findUserByList(ids);

        for (User user : list) {
            System.out.println(user );
        }
    }

set+if / trim+if【更新】

set+if

UserMapper接口

/**
  * 更新用户信息
  */
int updateUserById(User user);

UserMapper.xml文件

   <update id="updateUserById" parameterType="User">
        update user
        <!-- set标签会出现set关键字
            会将最后一个字段的,去掉
        -->
        <set>
            <if test="username != null">
               username = #{username},
            </if>
            <if test="password != null">
                password = #{password},
            </if>
            <if test="phone != null">
                phone = #{phone},
            </if>
        </set>
        where id = #{id}
    </update>

<set>标签会自动拼接set关键字,并且会自动去掉最后一个字段的 ','

在这里插入图片描述
在这里插入图片描述

trim+if
<update id="updateUserById" parameterType="User">
        update user
     <!--
            trim : 滤空
            prefix 在if语句前拼接set
            suffixOverrides 如果是最后一个字段 将,逗号掩盖
        -->
        <trim prefix="set" suffixOverrides=",">
            <if test="username != null">
                username = #{username},
            </if>
            <if test="password != null">
                password = #{password},
            </if>
            <if test="phone != null">
                phone = #{phone},
            </if>
        </trim>
        where id = #{id}
    </update>

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值