Oracle表 列欄位的增加、刪除、修改以及重新命名操作sql

記錄每一次錯誤發表於2018-10-16

增加欄位語法: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;


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31547066/viewspace-2216609/,如需轉載,請註明出處,否則將追究法律責任。

相關文章