account 에 여러 자료 입력 후 account에서 다시 bcode(code)를 참조해서 참조키 연결 시 문제 SQL> insert into account(code) values('WOW'); commit; SQL> alter table account 2 add constraint account_code_fk 3 foreign key(code) 4 references bcode(code); add constraint account_code_fk * ERROR at line 2: ORA-02298: cannot validate (KOO.ACCOUNT_CODE_FK) - parent keys not found (이어지지 않습니다.) --> EXCEPTION table을 이용해봅시다. EXCEPTION t..