ex) dept테이블에서 부서번호에 해당하는 부서명, 위치 변경
1. mapper작성 <update id="updateDept" parameterType="DeptVO"> update dept set dname=#{dname}, loc=#{loc} where deptno=#{deptno} </update>