zoukankan      html  css  js  c++  java
  • 【批量】单表批量更新语句

    xml

    <update id="updateMaterialQrList" parameterType="java.util.List">
            <foreach collection="materialQrList" item="p" index="index" open="" close="" separator=";">
                update ${materialQrTable}
                <set>
                    material_doc = #{p.materialDoc},
                    material_docYear = #{p.materialDocYear},
                    storage_type = #{p.storageType}
                </set>
                where
                qr_code = #{p.qrCode}
            </foreach>
        </update>

    mapper.java

    serviceImpl.java

    有的内容是自己平日积累的与工作上遇到的,有的是摘抄其他博主的精彩好文(会附上作者),愿大家共同成长。
  • 相关阅读:
    idea
    C#
    mysql
    .net5
    .net5
    .net5
    .net5
    .net5
    .net5
    .net5
  • 原文地址:https://www.cnblogs.com/PinkPink/p/14733759.html
Copyright © 2011-2022 走看看