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

2022-07-25 03:09:11 字數 790 閱讀 9816

增加字段語法: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 tablename drop (column);

說明:alter table 表名 drop column 欄位名;

例:alter table sf_users drop column headpic;

欄位的重新命名:

說明:alter table 表名 rename column 列名 to 新列名 (其中:column是關鍵字)

表的重新命名:

說明:alter table 表名 rename to 新錶名

oracle表字段的增加刪除和修改

oracle表字段的增加刪除和修改 增加字段 alter table luffy.student test2 add cdr content varchar2 2000 alter table luffy.student test2 add course inst id number 12 alte...

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

本文主要是關於oracle資料庫表中字段的增加 刪除 修改和重新命名的操作。增加字段語法 alter table tablename add column datatype default value null not null 說明 alter table 表名 add 欄位名 字段型別 預設值 ...

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

本文主要是關於oracle資料庫表中字段的增加 刪除 修改和重新命名的操作。增加字段語法 alter table tablename add column datatype default value null not null 說明 alter table 表名 add 欄位名 字段型別 預設值 ...