1. 程式人生 > >mybatis的批量插入與更新

mybatis的批量插入與更新

一:Oracle資料庫

1:批量插入

<insert id="insertBatch" parameterType="java.util.List" >
    insert into RECIPEDETAIL (RDID, ROID, TYPE, 
      NAME, MEDIWEIGHT, MEDINUM, 
      MONEY, OPERATETIME, CHARGENUMBER, 
      REMARK, INSTRUCTION, AMOUNTEVERY, 
      MEDIUNIT, STATUS)
      <!--序列Oracle自增 -->
    select SEQ_recipeDetail.NEXTVAL,A.* from(
    <foreach collection="list" item="item" index="index" separator="union all">
      select #{item.roid,jdbcType=DECIMAL}, #{item.type,jdbcType=DECIMAL}, 
      #{item.name,jdbcType=NVARCHAR}, #{item.mediweight,jdbcType=DECIMAL}, #{item.medinum,jdbcType=DECIMAL}, 
      #{item.money,jdbcType=DECIMAL}, #{item.operatetime,jdbcType=TIMESTAMP}, #{item.chargenumber,jdbcType=NVARCHAR}, 
      #{item.remark,jdbcType=NVARCHAR}, #{item.instruction,jdbcType=NVARCHAR}, #{item.amountevery,jdbcType=DECIMAL}, 
      #{item.mediunit,jdbcType=NVARCHAR}, #{item.status,jdbcType=DECIMAL}
       FROM DUAL
    </foreach>
    ) A
  </insert>

2:批量更新

<update id="updateBatch" parameterType="java.util.List" >  
  <foreach collection="list" item="item" index="index" open="begin" close=";end;" separator=";">
      update RECIPEDETAIL set
      ROID = #{item.roid,jdbcType=DECIMAL},
      TYPE = #{item.type,jdbcType=DECIMAL},
      NAME = #{item.name,jdbcType=NVARCHAR},
      MEDIWEIGHT = #{item.mediweight,jdbcType=DECIMAL},
      MEDINUM = #{item.medinum,jdbcType=DECIMAL},
      MONEY = #{item.money,jdbcType=DECIMAL},
      OPERATETIME = #{item.operatetime,jdbcType=TIMESTAMP},
      CHARGENUMBER = #{item.chargenumber,jdbcType=NVARCHAR},
      REMARK = #{item.remark,jdbcType=NVARCHAR},
      INSTRUCTION = #{item.instruction,jdbcType=NVARCHAR},
      AMOUNTEVERY = #{item.amountevery,jdbcType=DECIMAL},
      MEDIUNIT = #{item.mediunit,jdbcType=NVARCHAR},
      STATUS = #{item.status,jdbcType=DECIMAL}
      where RDID = #{item.rdid,jdbcType=DECIMAL}   
    </foreach>
  </update>

二:Mysql資料庫 
批量操作主要使用的是Mybatis的foreach,遍歷引數列表執行相應的操作,所以批量插入/更新/刪除的寫法是類似的,只是SQL略有區別而已。MySql批量操作需要資料庫連線配置allowMultiQueries=true才可以。 
(1)批量插入  

<insert id="batchInsert" parameterType="java.util.List" useGeneratedKeys="true">  
        <foreach close="" collection="list" index="index" item="item" open="" separator=";">  
            insert into user (name, age,dept_code) values  
            (#{item.name,jdbcType=VARCHAR},  
            #{item.age,jdbcType=INTEGER},  
             #{item.deptCode,jdbcType=VARCHAR}  
            )  
        </foreach>  
    </insert>  


上面演示的是MySql的寫法(表主鍵自增的寫法),因為MySql支援主鍵自增,所以直接設定useGeneratedKeys=true,即可在插入資料時自動實現主鍵自增;不需要自增時就不需要設定useGeneratedKeys,而且插入SQL包含所有欄位即可。實際Mysql還有另外一種寫法,就是拼接values的寫法,這種方法我測試過比多條insert語句執行的效率會高些。不過需要注意一次批量操作的數量做一定的限制。具體寫法如下:  
<insert id="batchInsert" parameterType="java.util.List" useGeneratedKeys="true">  
        insert into user (name, age,dept_code) values  
        <foreach collection="list" index="index" item="item" open="" close="" separator=",">  
            (#{item.name,jdbcType=VARCHAR},  
            #{item.age,jdbcType=INTEGER},  
             #{item.deptCode,jdbcType=VARCHAR}  
            )  
        </foreach>  
    </insert>  

對於Oracle不支援主鍵自增,需要序列替換,所以在SQL寫法上略有不同,需要在insert語句前加個 <selectKey>...</selectKey>告知Mybatis主鍵如何生成(selectKey中間的內容有省略,實際是生成主鍵的SQL)。 

(2)批量更新  
<update id="batchUpdate" parameterType="java.util.List">  
        <foreach close="" collection="list" index="index" item="item" open="" separator=";">  
            update user set name=#{item.name,jdbcType=VARCHAR},age=#{item.age,jdbcType=INTEGER}  
            where id=#{item.id,jdbcType=INTEGER}  
        </foreach>  
    </update>  


(3)批量刪除  
<delete id="batchDelete" parameterType="java.util.List">  
        <foreach close="" collection="list" index="index" item="item" open="" separator=";">  
            delete from user  
            where id=#{item.id,jdbcType=INTEGER}  
        </foreach>  
    </delete>  


二、模糊查詢  
<select id="selectLikeName" parameterType="java.lang.String" resultMap="BaseResultMap">  
        select  
        <include refid="Base_Column_List" />  
        from user  
        where name like CONCAT('%',#{name},'%' )   
    </select>  

上面的模糊查詢語句是Mysql資料庫的寫法示例,用到了Mysql的字串拼接函式CONCAT,其它資料庫使用相應的函式即可。 

三、多條件查詢 

多條件查詢常用到Mybatis的if判斷,這樣只有條件滿足時,才生成對應的SQL。  
<select id="selectUser" parameterType="map" resultMap="BaseResultMap">  
        select  
        <include refid="Base_Column_List" />  
        from user  
        <where>  
            <if test="name != null">  
                name = #{name,jdbcType=VARCHAR}  
            </if>  
            <if test="age != null">  
                and age = #{age,jdbcType=INTEGER}  
            </if>  
        </where>  
    </select>  


四、聯表查詢 
聯表查詢在返回結果集為多張表的資料時,可以通過繼承resultMap,簡化寫法。例如下面的示例,結果集在User表字段的基礎上添加了Dept的部門名稱
<resultMap id="ExtResultMap" type="com.research.mybatis.generator.model.UserExt" extends="BaseResultMap">  
     <result column="name" jdbcType="VARCHAR" property="deptName" />  
  </resultMap>  
      
    <select id="selectUserExt" parameterType="map" resultMap="ExtResultMap">  
        select  
            u.*, d.name  
        from user u inner join dept d on u.dept_code = d.code  
        <where>  
            <if test="name != null">  
                u.name = #{name,jdbcType=VARCHAR}  
            </if>  
            <if test="age != null">  
                and u.age = #{age,jdbcType=INTEGER}  
            </if>  
        </where>  
    </select>