首页 > 其他分享 >Mybatis的Update语句配置的写法

Mybatis的Update语句配置的写法

时间:2023-02-07 09:57:21浏览次数:57  
标签:语句 ITEMID 配置 Update Mybatis 写法

1、Mybatis的Update语句配置的写法

<update id="updateMaxNum" parameterType="map">
        update 表名 set MAXNUM = #{maxNum} where ITEMID = #{itemIdHead} and CUSTOMERDRAWINGNO = #{customerDrawingNo}
    </update>

  

标签:语句,ITEMID,配置,Update,Mybatis,写法
From: https://www.cnblogs.com/wwssgg/p/17097384.html

相关文章