MyBatis--遍历map



    update user set age=40
    where id in (
    
        
            #{i}
        
    )

    @Test
    public void foreachupdate() {
        // 2.创建SQLsession,执行SQL
        SqlSession session = ssf.openSession();
        Map map=new HashMap();
        map.put("key", new int[]{1,3});
        //第一个是SQL定位
        //第二个传入的是map类型的参数
        session.update("usernp.foreachupdate",map);
        // 3.处理结果
        session.commit();
        // 4.释放资源
        session.close();
    }

你可能感兴趣的:(MyBatis--遍历map)