무결성 제약조건 추가 예

 

*실습 예 1

-p44의 부서 테이블 인스턴스를 참조하여 deptno에 기본 키, dname에 NOT NULL 무결성 제약조건을 추가하여라.

 

add constraints primary key dept_pk(deptno);

alter table department modify (dname not null);

 

실습 예2

-p44의 교수 테이블 인스턴스를 참조하여 profno에 기본 키, name에 NOT NULL, deptno에 참조 무결성 제약조건을 추가하여라.

 

alter table professor add constraints prof_pk primary key(profno);

alter table professor modify (name not null);

alter table professor add constraints prof_fk

foreign key(deptno) references department(deptno);

 

 

+ Recent posts