트랜잭션의 활용 -- 트랜잭션 모드 (기본) : 자동 커밋 트랜잭션 update employee set salary = salary + commission where eno='103' ; -- 트랜잭션 모드 : 명시적 트랜잭션 start transaction; -- 명시적 트랜젝션 시작 -- delete from employee; -- insert into employee(eno,ename,job,manager,hiredate,salary,commission,dno) -- values('117','e17','chief','101','2020-11-02',1500,0,30); -- rollback; -- 취소하기 (되돌리기) -- commit; -- 반영하기 커미션하면 롤백이 안됨 insert into e..