惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
月光博客
月光博客
Vercel News
Vercel News
Recent Announcements
Recent Announcements
B
Blog RSS Feed
Y
Y Combinator Blog
M
MIT News - Artificial intelligence
MongoDB | Blog
MongoDB | Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
雷峰网
雷峰网
D
Docker
Jina AI
Jina AI
IT之家
IT之家
人人都是产品经理
人人都是产品经理
L
LangChain Blog
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
MyScale Blog
MyScale Blog
博客园 - 叶小钗
The GitHub Blog
The GitHub Blog
The Cloudflare Blog
A
About on SuperTechFans
Hugging Face - Blog
Hugging Face - Blog

博客园 - Bob.Xie

如何把一个本地项目上传到git MySQL导出数据字典 java 判断日期是否小于本月 生成随机字符串 工具类 vue 日期控件el-date-picker 获取选择月份的最后一天 vue 数据导入加载样式 CSS文字过多设置省略号 Spring 本地获取文件 SpringBoot 全局统一异常拦截器 List stream 数据处理 MySQL中concat,concat_ws以及group_concat的使用 Java获取当前日期属于今年的第几周 使用tesseract-ocr读取图片文字(转) element-ui表格el-table回显时默认全选数据 idea 插件库 MySQL分组修改排序序号 查看Linux服务器连接数,Oracle表和索引分析 转载:查看Oracle连接数 转载:查看ORACLE最耗时的SQL
mybatis 批量新增和修改
Bob.Xie · 2021-11-15 · via 博客园 - Bob.Xie
<insert id="addAttrValueBatch">
    <if test="materialCustomerAttrPOS != null and materialCustomerAttrPOS.size>0">
        insert into
        material_customer_attr(core_id,attr_code,attr_value,create_time,create_user,update_time,update_user)
        values
        <foreach collection="materialCustomerAttrPOS" item="it" separator=",">
            (#{it.coreId},#{it.attrCode},#{it.attrValue},now(),#{userId},now(),#{userId})
        </foreach>
    </if>
</insert>

<update id="updateBatch">
    <foreach collection="coreAttrlist" item="bean" index="index" open="" close="" separator=";">
        UPDATE material_core_attr
        <set>
            name = #{bean.name},
            attach_file_ids = #{bean.attachFileIds},
            release_time = #{bean.releaseTime},
            update_time = now(),
            update_user = #{userId}
        </set>
        <where>
            id = #{bean.id}
        </where>
    </foreach>
</update>