MyBatis学习笔记——08动态SQL

1. IF标签和where标签

1. 说明
  1. 当满足if条件时, 会将if中的sql语句加入到SQL中
  2. where只有当其中的条件至少满足一个时才会生效
  3. where可以自动删掉条件中多余的and, 而不能添加缺失的and
2. 案例
  • <select id="queryArticleIF" resultType="article" parameterType="map">
       select * from article
        <where>
            <if test="title != null">
                title = #{title}
            </if>
            <if test="author != null">
               and author = #{author}
            </if>
        </where>
    </select>
    

2. Choose

1. 说明
  1. choose中至少有一个条件满足时才会生效
  2. 如果有多个when, 当满足第一个when时, 就会跳过后续的判断
  3. 如果when中的条件都不满足时, 则会走otherwise
2. 案例
  • <select id="queryArticleChoose" resultType="article" parameterType="map">
        select * from article
        <where>
            <choose>
                <when test="title != null">
                    title = #{title}
                </when>
                <when test="author">
                    author = #{author}
                </when>
                <otherwise>
                    views = #{views}
                </otherwise>
            </choose>
        </where>
    </select>
    

3. set

1. 说明
  1. set只有在至少满足一个条件的时候才会生效
  2. set会自动删掉内部代码中末尾多余的",", 而不会填上缺失的","
2. 案例
  • <update id="updateArticle" parameterType="map">
        update article
        <set>
            <if test="author != null">
                author = #{author},
            </if>
            <if test="title != null">
                title = #{title},
            </if>
        </set>
        where id = #{id}
    </update>
    

4.sql片段

1. 说明
  1. sql标签的作用是提出公共的sql语句, 实现多是利用
  2. sql片段的标签: sql
  3. < include refid=“片段id”>< /include>
2. 案例
  • <sql id="sql">
       <if test="title != null">
            title = #{title}
        </if>
        <if test="author != null">
            and author = #{author}
        </if>
    </sql>
    
    <select id="queryArticleIF2" resultType="article" parameterType="map">
        select * from article
        <where>
            <include refid="sql"></include>
        </where>
    </select>
    
5. foreach
1. 说明
  1. collection: 集合名
  2. item: 变量名
  3. open: 集合前标志
  4. close: 集合后标志
  5. separator: 分隔符
2. 案例
  1. 代码1
    <!-- select * from article WHERE id in ( ? , ? ) -->
    <select id="queryArticleForeach" parameterType="map" resultType="article">
        select * from article
        <where>
            id in
            <foreach collection="ids" item="id" open ="(" separator="," close=")">
                #{id}
            </foreach>
        </where>
    </select>
    
  2. 代码2
    <!--select * from article WHERE id = ? or id = ? -->
    <select id="queryArticleForeach2" parameterType="map" resultType="article">
        select * from article
        <where>
            <foreach collection="ids" item="id" open ="" separator="or" close="">
                id = #{id}
            </foreach>
        </where>
    </select>
    
  3. 测试
    @Test
    public void testQueryArticleForeach(){
        SqlSession sqlSession = MybatisUtils.getSqlSession();
        ArticleMapper mapper = sqlSession.getMapper(ArticleMapper.class);
        Map<String, Object> map = new HashMap<String, Object>();
        ArrayList<Integer> ids = new ArrayList<Integer>();
        ids.add(1);
        ids.add(3);
        map.put("ids", ids);
        mapper.queryArticleForeach(map);
    }
    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值