SQL
SQL_쿼리문: 기본키설정, not null,
S_pot
2021. 6. 22. 13:41
-- deptno컬럼을 not null로 설정 후 기본키로 지정
alter table dept
alter column deptno char(3) not null;
alter table dept add constraint dept_pk primary key(deptno);