SQL
SQL_외래키(foreign key)
S_pot
2021. 6. 22. 14:19
-- dept테이블의 deptno를 참조하는 외래키적용
alter table student
add constraint student_fk foreign key(deptno) references dept(deptno);