Mybatis 批量删除

一直使用MybatisPlus,好久没写Mybatis 了,都差点忘了foreach 标签怎么使用了,备忘保存下,

下面是一个根据 id 的集合批量删除的方法。

Mapper 中的方法定义如下:

Integer batchDeleteByIds(@Param("userId")String userId,@Param("ids")List ids);

xml 中的:

    
        DELETE FROM article  WHERE user_id = #{userId,jdbcType=VARCHAR}
        and id IN
        
            #{item,jdbcType=VARCHAR}
        
    

OK...

你可能感兴趣的:(Spring,Boot,Mybatis,foreach)