oracle修改表格欄位名稱的方法是:
#首先bai方法是使用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);
說明:
alter 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;
推薦教學:Oracle教學」
以上是oracle如何修改表格欄位名的詳細內容。更多資訊請關注PHP中文網其他相關文章!