테이블 컬럼의 데이터타입 변경
2010.05.12 08:33
원문 : http://www.ischo.net -- 조인상 // 시스템 엔지니어
Writer : http://www.ischo.net -- ischo // System Engineer in Replubic Of Korea
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
본문 : http://www.ischo.net -- 조인상 //시스템 엔지니어
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
alter table 테이블명 modify(컬럼명 데이타타입);
예1. alter table test modify (id number);
예2. alter table test modify (id varchar2(20));
예3. alter table test modify (id number(5));