原文:
1.新增字段:
alter table 表名 add (字段 字段型別) [ default '輸入預設值'] [null/not null] ;
2.新增備註:
comment on column 庫名.表名.欄位名 is '輸入的備註'; 如: 我要在ers_data庫中 test表 document_type欄位新增備註 comment on column ers_data.test.document_type is '檔案型別';
3.修改字段型別:
alter table 表名 modiy (字段 字段型別 [default '輸入預設值' ] [null/not null] ,字段 字段型別 [default '輸入預設值' ] [null/not null] ); 修改多個欄位用逗號隔開
4.刪除字段:
alter table 表名 drop (字段);
mysql 修改 新增 刪除 表字段
mysql 修改 新增 刪除 表字段 新增表的字段 alter table 表名 add 欄位名 欄位的型別 例子 alter table table1 add transactor varchar 10 not null alter table table1 add id int unsigned...
ORACLE新增字段 刪除字段
1.刪除表 drop table sys job 2.建立表 create table create table sys job job id number 30 not null,job name varchar2 30 not null alter table sys job addconstr...
Oracle操作表,字段
0.建立表 create table table name as select from table name b 1.oracle 修改表名 alter table old table name rename to new table name 大寫為系統命令 2.oracle通過altertab...