首頁  >  文章  >  資料庫  >  oracle如何修改表格欄位名

oracle如何修改表格欄位名

hzc
hzc原創
2020-06-08 14:00:177924瀏覽

oracle如何修改表格欄位名

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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn