赞
踩
- <insert id="insertInfoBatch" parameterType="java.util.List">
- replace into GOVRECEIPTS (state,orgname,orgaddr,regauth,rcptyear,receipts,crtdate)
- values
- <foreach collection="list" item="item" index="index" separator=",">
- (#{item.state}, #{item.orgname}, #{item.orgaddr}, #{item.regauth},
- #{item.rcptyear}, #{item.receipts}, #{item.crtdate})
- </foreach>
- </insert>
- <insert id="insertInfoBatch" parameterType="java.util.List">
- insert ignore GOVRECEIPTS (state,orgname,orgaddr,regauth,rcptyear,receipts,crtdate)
- values
- <foreach collection="list" item="item" index="index" separator=",">
- (#{item.state}, #{item.orgname}, #{item.orgaddr}, #{item.regauth},
- #{item.rcptyear}, #{item.receipts}, #{item.crtdate})
- </foreach>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。