-테이블 생성
1. create table test (
   name varchar(10)
   );

- 컬럼 추가
2. alter table test add(osy number(10));

- 컬럼 이름 재정의
3. alter table test rename column osy to osy79;

- 컬럼 속성값 수정
4. alter table test modify(osy79 varchar(10));

- 컬럽 삭제
5. alter table test drop(osy79);

테이블명이나 테이블명령어는 아래의 사이트를 참고하였습니다.
http://luckys.tistory.com/73

+ Recent posts