Oracle表字段的增加、刪除、修改和重命名


增加字段語法: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;


本文來自:https://www.cnblogs.com/ggll611928/p/5981498.html


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM