oracle 增刪表字段。增刪外來鍵。

2021-09-30 05:42:40 字數 456 閱讀 9174

增加表字段:

如何用sql語句給表增加字段?

alter   table   表名   add   列名   varchar(20)   not null

怎麼樣增加預設值為null,屬性為varchar,長度為20的字段?

alter   table   表名   add   列名   varchar(20)   default   null

刪除表字段:

alter table *** drop column yy;

增加外來鍵:

alter table t_inspection_d add constraint fk_t_inspection foreign key(inspection_id) references t_inspection(id);

刪除外來鍵:

alter table *** drop constraint 外健名

Oracle 表字段增刪改

增加字段語法 alter table 表名 add 欄位名 字段型別 預設值 是否為空 例 alter table corpinfo add createdate null 例 alter table corpinfo add createdate varchar2 20 修改欄位的語法 alter...

Oracle表字段操作,增 刪 改

alter table tablename add column datatype default value null not null alter table tablename modify column datatype default value null not null alter t...

9 mySQL(DDL 表 字段 增刪改查)

表 增,刪,改,查,複製 字段 增,刪,改,查 字段型別 字段約束 用於限制欄位的資料的,從而保證資料一致,準確,可靠 級連刪除 級連滯空 p148,37 30暫時沒看 增 中間用空格隔開 create table 表名 欄位名 字段型別 字段約束,欄位名 字段型別 字段約束,欄位名 字段型別 字段...