21.02.02 [050] Tue
insert into emp02 (empno, ename, job, mgr, hiredate, sal, comm, deptno) values (0, 'test', 'test', 0,null,0,0 ,0); 이렇게는 하나하나 넣어지는데 더미데이터 넣는 방법 create sequence ex_seq increment by 1 start with 9091; begin for i in 1..3 loop insert into emp02 (select max(empno) + 1 from emp02, ename, job, mgr, hiredate, sal, comm, deptno) values (0, 'test', 'test',0 ,null ,0 ,0 ,0); 해당알터키를 지정해서 넣어야한다. emp유효성 검사할때 ..
2021. 2. 2.