기본키, 외래키 권한 부여
1 | grant references on test_table to id1; | cs |
기본키, 외래키 등록
1 2 3 4 5 6 7 | CREATE TABLE video_table ( video_id VARCHAR2(25) primary key, // 기본키 video_name VARCHAR2(25) not null, video_class VARCHAR2(25) not null, genre_code VARCHAR(25), foreign key (genre_code) references genre_table //외래키 ); | cs |
기본키 등록
1 2 3 4 | CREATE TABLE genre_table ( genre_code VARCHAR2(25) primary key, //기본키 genre_name VARCHAR2(25) not null ); | cs |
기본키 수정
1 | ALTER TABLE video_table MODIFY (video_id VARCHAR2(25) not null); | cs |
외래키 수정
1 | ALTER TABLE video_table MODIFY (foreign key (genre_code) references genre_table); | cs |
'데이터베이스' 카테고리의 다른 글
[oracle] ORA-12514 에러 (0) | 2013.04.18 |
---|---|
[oracle] The Network Adapter could not establish the connection (0) | 2013.04.18 |
[oracle] 오라클 서버 네트워크 접속방법 (0) | 2013.04.03 |
[oracle] 사용자 계정 생성 (0) | 2013.04.03 |
[oracle] 주석 추가, 확인 (0) | 2013.04.03 |