mybatis中update时set和if的用法


        update college
        
            
                collegeName = #{collegename,jdbcType=VARCHAR},
            
        
        where collegeID = #{collegeid,jdbcType=INTEGER}

update时set和if的用法 每个修改都加逗号 set能够智能的去掉最后一个逗号

参考:https://blog.csdn.net/qq_39940205/article/details/79517742

你可能感兴趣的:(Java)