mybatis的动态sql总结

1.选择排序
order by
  <choose>
      <when test="status == 0">
         end_time asc ,
      </when>
      <when test="status == 1">
         total_price desc ,
      </when>
      <when test="status == 2">
         amount desc ,
      </when>
      <when test="status == 3">
         `count` desc ,
      </when>
  </choose>
      sort DESC ,create_time DESC

2.模糊查询

product_name LIKE CONCAT('%',ltrim(rtrim(#{keyword})),'%')  //去掉前后空格

3.foreach遍历

where id in

<foreach collection="ids" item="id" index="index" open="(" separator="," close=")">

#{id}

</foreach>

4.mysql批量插入

<insert id="insertProductCoupon" parameterType="com.cncbox.mall.sales.model.Product">
    insert into sms_coupon_product_relation (id, coupon_id, product_id,
            product_name, product_sn)
    values
          <foreach collection="productList"  item="product" separator=",">
              (null, #{product.couponId,jdbcType=BIGINT}, #{product.productId,jdbcType=BIGINT},
              #{product.productName,jdbcType=VARCHAR}, #{product.productSn,jdbcType=VARCHAR})
          </foreach>
</insert>

5.批量修改 mybatis需要批量执行,需要再数据源连接url后加 &allowMultiQueries=true

<update id="updatePic">
        <foreach collection="productPics" item="list" index="index" open="" close="" separator=";">
            update pms_product
            <set>
                pic=#{list.pic},album_pics=#{list.pic}
            </set>
            where id=#{list.id}
        </foreach>
</update>
<update id="updateTemplate" parameterType="com.macro.mall.dto.CardTemplate">
        <foreach collection="cardTemplateList" item="list" index="index" open="" close="" separator=";">
            update sms_card_template
            <set>
                <if test="list.name != null">
                    `name` = #{list.name,jdbcType=VARCHAR},
                </if>
                <if test="list.pic != null">
                    pic = #{list.pic,jdbcType=VARCHAR},
                </if>
                    create_time = sysdate(),
            </set>
            where id = #{list.id,jdbcType=BIGINT}
        </foreach>
    </update>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值