mybatis批量插入和修改sql
阿新 • • 發佈:2018-12-11
批量修改sql語句
1.批量修改方式一:(此種方式適用於針對每條的修改值都不同)
注意的是 separator是用“;” 分號分割的。這個sql語句輸出來後是如下的形式:
update table set col1 = ?,col2 = ? where id =? ;update table set col1 = ?, set col2 = ? where id = ?
<foreach item="item" index="index" collection="list" separator=";">
UPDATE table
<set>
column1 = #{item.val1},
column2 = #{item.val2}
</set>
<where>
id = #{item.id}
</where>
</foreach>
2.批量修改方式二:(此種方式適用於根據一個列的唯一標識修改相同的資料比如給表中新增預設值等操作)
這裡separator使用“,”分割。這個sql語句輸出控制檯的形式如下(這裡的open和close省去了):
update table set column1 = ? ,column2 = ? where id in (?,?,?,?)
update table set column1 = #{val1},column2 = #{val2} where id in <foreach item="item" index="index" collection="list" separator=","> id = #{item.id} </foreach>
3.批量插入方式:
這個sql語句輸出後的形式如下:
insert into table (c1,c2,c3,c4) values(?,?,?,?),(?,?,?,?)
insert into table (col1,col2,col3,col4) values
<foreach item="item" index="index" collection="list" separator=",">
(#{item.val1},#{item.val2},#{item.val3},#{item.val4})
</foreach>
此外還有一種把insert放入foreach迴圈裡,但是此種批量插入效率很慢,相比以上這種方式慢了很多很多。所以還是優先推薦上述方式。