batchUpdate

    <update id="batchUpdate" parameterType="java.util.List">
        update test
        <foreach collection="list" item="item" index="index" open="begin" close=";end;" separator=";">
        <set>
        a=a
            </set>
          where 1=1
        </foreach>

    </update>


你可能感兴趣的:(mybatis;oracle)