Mybatis之旅第四篇-动态SQL

一、引言

在之前的CRUD例子中,都是一些很简单的SQL,然而实际的业务开发中会有一些复杂的SQL,我们经常需要拼接SQL,拼接的时候要确保不能忘了必要的空格,还要注意省掉列名列表最后的逗号。Mybatis个一个强大特性--动态SQL,这一特性可以彻底摆脱这种痛苦。

二、if标签

现在有如下查询:

<!-- 根据条件查询用户 --><select id="queryUserByWhere" parameterType="user" resultType="user">      SELECT id, username, birthday, sex, address FROM `user`

        WHERE sex = #{sex} AND username LIKE

      '%${username}%'

    </select>

当我们带入两个参数时,返回结果不会有问题,可是当我们只带入姓名,不带入性别时,结果就不合理,因为sex带入的null,作为查询条件就过滤了结果,这个时候我们需要if标签。

改造sql:

<!-- 根据条件查询用户 --><select id="queryUserByWhere" parameterType="user" resultType="user">  SELECT id, username, birthday, sex, address FROM `user`

    WHERE 1=1

  <if test="sex!=null and sex !=''">    AND sex = #{sex}

  </if><if test="username!=null and username!=''">  AND username like

  '%${username}%'

  </if></select>

将接口和方法都加入其中

@Testpublicvoid testQueryUserByWhere() {

    // mybatis和spring整合,整合之后,交给spring管理SqlSession sqlSession =this.sqlSessionFactory.openSession();

    // 创建Mapper接口的动态代理对象,整合之后,交给spring管理UserMapper userMapper = sqlSession.getMapper(UserMapper.class);

    // 使用userMapper执行根据条件查询用户User user =new User();

    //user.setSex("1");user.setUsername("张");

    Listlist = userMapper.queryUserByWhere(user);

    for (User u : list) {

        System.out.println(u);

    }

    // mybatis和spring整合,整合之后,交给spring管理    sqlSession.close();

}

结果:

三、where 标签

where标签会把第一个and忽略,当然如果是or开头的,MyBatis也会把它忽略,此外,在where元素中你不需要考虑空格的问题,MyBatis会智能的帮你加上。

<select id="queryUserByWhere1" parameterType="user" resultType="user">    SELECT id, username, birthday, sex, address FROM `user`

    <!-- where标签可以自动添加where,同时处理sql语句中第一个and或者or关键字 --><where><if test="sex!=null">            AND sex = #{sex}

        </if><if test="username!=null and username!=''">            AND username like

            '%${username}%'

        </if></where></select>

四、set 标签

在更新的时候我们也需要像where一样能够进行动态判断,这个时候就使用set标签,set会使最后的逗号忽略,我们就可以动态的更新那些修改了的字段。

如下:

<update id="dynamicSetTest" parameterType="user">    update `user`

    <set><if test="sex != null">            sex = #{sex},

        </if><if test="username!=null and username!=''">            username = #{username},

        </if></set>    where id = #{id}</update>

测试:

@Testpublicvoid dynamicSetTest() {

    SqlSession sqlSession =this.sqlSessionFactory.openSession();

    UserMapper userMapper = sqlSession.getMapper(UserMapper.class);

    User user =new User();

    //user.setSex("1");user.setUsername("袁大大");

    user.setId(26);

    userMapper.dynamicSetTest(user);

    sqlSession.commit();

    sqlSession.close();

}

五、choose(when,otherwise) 标签

choose的作用类似Java语言中的switch,可以解决我们只想选择一个查询条件的情况。

如下:

<select id="selectUserByChoose" resultType="user" parameterType="user">        select id, username, birthday, sex, address FROM `user`

        <where><choose><when test="id !='' and id != null">                    id=#{id}

                </when><when test="username !='' and username != null">                    and username like #{username}

                </when><otherwise>                    and sex=#{sex}

                </otherwise></choose></where></select>

这个写法很容易理解,与switch相同,匹配成功后就会跳出。

六、trim 标签

trim标记是一个格式化的标记,可以完成set或者是where标记的功能,怎么用呢:

增加prefix前缀,去掉第一个prefixoverride中内容。

增加suffix后缀,去掉最后一个suffixoverride中内容。

通过trim可以解决where 与set 问题

<select id="selectUserByUsernameAndSex" resultType="user" parameterType="user">    select * from user

    <!-- <where>

        <if test="username != null">

          username=#{username}

        </if>

        <if test="username != null">

          and sex=#{sex}

        </if>

    </where>  --><trim prefix="where" prefixOverrides="and | or"><if test="username != null">            and username=#{username}

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

        </if></trim></select>

先增加where,并去掉第一个and 或者or ,替换了where if 写法。

<!-- 根据 id 更新 user 表的数据 --><update id="updateUserById" parameterType="com.ys.po.User">        update user u

            <!-- <set>

                <if test="username != null and username != ''">

                    u.username = #{username},

                </if>

                <if test="sex != null and sex != ''">

                    u.sex = #{sex}

                </if>

            </set> --><trim prefix="set" suffixOverrides=","><if test="username != null and username != ''">                    u.username = #{username},

                </if><if test="sex != null and sex != ''">                    u.sex = #{sex},

                </if></trim>       

        where id=#{id}

    </update>

增加set,并去掉最后一个逗号,替换了set if写法。

七、SQL片段

写sql时经常会出现一些重复片段,我们可以进行提取,这样可以做到重用。

先使用sql进行声明:

<!-- 声明sql片段 --><sql id="userFields">  id, username, birthday, sex, address</sql>

使用include refid

<select id="queryUserBySqlWhere" parameterType="user" resultType="user"><!-- SELECT id, username, birthday, sex, address FROM `user` --><!-- 使用include标签加载sql片段;refid是sql片段id -->SELECT <include refid ="userFields"/> FROM `user`<!-- where标签可以自动添加where关键字,同时处理sql语句中第一个and关键字 --><where><if test="sex != null">    AND sex = #{sex}</if><if test="username != null and username != ''">AND username LIKE

'%${username}%'

</if></where></select>

八、foreach标签

当我们向sql传递数组或List,mybatis使用foreach解析。

foreach标签,进行遍历

collection:遍历的集合,这里是QueryVo的ids属性

item:遍历的项目,可以随便写,,但是和后面的#{}里面要一致

open:在前面添加的sql片段

close:在结尾处添加的sql片段

separator:指定遍历的元素之间使用的分隔符

<select id="queryUserByIds" parameterType="com.yuanqinnan.pojo.QueryVo" resultType="user">SELECT * FROM `user`<where><foreach collection="ids" item="item" open="id IN (" close=")"    separator=",">    #{item}</foreach>

改造QueryVo:

@Data

public class QueryVo {

    private User user;

    private List<Integer> ids;

}

测试方法:

@Testpublicvoid queryUserByIds(){

    SqlSession sqlSession =this.sqlSessionFactory.openSession();

    UserMapper userMapper = sqlSession.getMapper(UserMapper.class);

    QueryVo user =new QueryVo();

    Listids =newArrayList<>();

    ids.add(1);

    ids.add(10);

    ids.add(24);

    user.setIds(ids);

    List list = userMapper.queryUserByIds(user);

    for (User u : list) {

        System.out.println(u);

    }

    sqlSession.close();

}

结果

动态sql其实是一个拼接过程,我们掌握上面这些标签,就能完成mybatis的动态sql

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容