Oracle PK(primary key) 추가/삭제
페이지 정보
본문
primary key 추가 및 삭제
----------------------------
1. 프라이머리키를 지운다. drop
alter table 테이블명 drop primary key;
2. 복합key로 다시 primary key를 만드세요.
alter table 테이블명 add constraint 인덱스명 primary key (기존컬럼,추가컬럼)
3. 프라이머리키를 만든다. add
alter table 테이블명 add primary key (칼럼이름) -- 칼럼이름을 감싸는 ( ) 필수
단 데이터가 들어가 있는경우에 데이터간에 중복이 있어서는 안된다.
그밖에 ALTER 문법들
----------------------------
https://www.happyjung.com/bbs/write.php?w=u&bo_table=lecture&wr_id=1597
참고자료
http://blog.naver.com/soul3532/100029064455
http://ntalbs.tistory.com/7
----------------------------
1. 프라이머리키를 지운다. drop
alter table 테이블명 drop primary key;
2. 복합key로 다시 primary key를 만드세요.
alter table 테이블명 add constraint 인덱스명 primary key (기존컬럼,추가컬럼)
3. 프라이머리키를 만든다. add
alter table 테이블명 add primary key (칼럼이름) -- 칼럼이름을 감싸는 ( ) 필수
단 데이터가 들어가 있는경우에 데이터간에 중복이 있어서는 안된다.
그밖에 ALTER 문법들
----------------------------
https://www.happyjung.com/bbs/write.php?w=u&bo_table=lecture&wr_id=1597
참고자료
http://blog.naver.com/soul3532/100029064455
http://ntalbs.tistory.com/7
댓글목록
등록된 댓글이 없습니다.