《Table 생성》
SQL> create table tableName(테이블명) (
  2  FieldName DataType(Size)
  3  );


《Table 수정》

1.test table에 osy란 number(10)타입의 컬럼 추가
SQL> alter table test add(osy number(10));


2.test table에 osy컬럼명을 osy79로 컬럼명 변경
SQL> alter table test rename column osy to osy79;


3.test table에 osy79로 컬럼 데이터 타입 변경
SQL> alter table test modify(osy79 varchar(10));


4.test table에 osy79로 컬럼 삭제
SQL> alter table test drop(osy79);


'ORACLE' 카테고리의 다른 글

oracle 시/분/초 더하기..  (0) 2016.11.11
특정 필드가 포함된 테이블 . PK필드 조회하기  (0) 2013.04.09
Oracle 각종 함수  (0) 2010.12.23
Sequence  (0) 2009.10.08
|

^-^)=b금도리's Blog is powered by Daum & tistory