Oracle 修改表操作

2022-03-03 09:07:54 字數 555 閱讀 9178

如題: 

--增加列操作:

alert table 表名 add 列名 列的型別

eg:alter table emp1 add pwd varchar2(10);

--刪除列操作:

alert table 表名 drop column 列名;

eg:alter table emp1 drop column age;

--修改字段型別:

alert table 表名 modify 列名 列的型別

eg:alter table emp1 modify createtime date;

--重新命名字段:

alert table 表名 rename 舊的列名 to 新的列名

eg:alter table emp1 rename column createtime to createdate;

===如圖:

Oracle的表操作 修改和刪除表

1 修改表的操作 1 新增列 語法格式 alter table talbe name add column name datatype 例 alter table student add tel varchar2 11 2 修改列 語法格式 alter table table name modify...

oracle表空間操作(建立 修改 刪除)

建立表空間 create tablespace tp1 datafile d ora tp1.dbf size 50m 為表空間新增資料檔案 alter tablespace tp1 add datafile d ora tp2.dbf size 60m 刪除表空間的資料檔案 alter table...

Oracle 修改表名

oracle修改表名的方式有以下幾種 方式一 1.先通過create table new table name as select from old table name 建立乙個新的表。2.檢查old table name上的約束,並把該約束應用到new table name上。3.禁用old t...