Oracle의 테이블 필드 이름 수정 방법은 다음과 같습니다.
첫 번째 방법은 RENAME 키워드를 사용하는 것입니다.
필드 이름 수정:
alter table 表名 rename column 现列zhi名 to 新列名;
테이블 이름 수정:
alter table 表名 rename to 新表dao名
필드 구문 추가:
alter table tablename add (column datatype [default value][null/not null],….);
설명 :
alter table 表名 add (字段名 字段类型 默认值 是否为空);
예 :
alter table sf_users add (HeadPIC blob);
예 :
alter table sf_users add (userName varchar2(30) default '空' not null);
구문 필드를 수정하려면 :
alter table tablename modify (column datatype [default value][null/not null],….);
설명 :
alter table 表名 modify (字段名 字段类型 默认值 是否为空);
예 :
alter table sf_InvoiceApply modify (BILLCODE number(4));
구문 :
alter table tablename drop (column);
description :
ralter table 表名 drop column 字段名;예 :
alter table sf_users drop column HeadPIC;예 예 :.
alter table 表名 rename column 列名 to 新列名 (其中:column是关键字)
필드 이름 바꾸기:
설명:
alter table sf_InvoiceApply rename column PIC to NEWPIC;
예:
alter table 表名 rename to 新表名
테이블 이름 바꾸기:
설명:
alter table sf_InvoiceApply rename to sf_New_InvoiceApply;
예:
rrreee권장 튜토리얼: "Oracle Tutorial"
위 내용은 Oracle에서 테이블 필드 이름을 수정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!