MyBatis--动态插入多条数据

MySQL支持的一种插入多行数据的INSERT语句写法是

INSERT INTO 表名 (字段名1,字段名2,字段名3) VALUES (值1,值2,值3,...),(值1,值2,值3,...)...

对应的接口方法

//给News插入多条类别
    public int addMoreNewsTypeByNewsId(@Param("newsId")int newsId, @Param("newsTypes")List newsTypeList);

xml文件配置方法:


            insert into news_newstype (newsid,newstypeid)
            values
            
                (#{newsId},#{type})
            
    

你可能感兴趣的:(MyBatis--动态插入多条数据)