如何在Oracle中增加修改刪除字段

2021-07-13 19:26:34 字數 947 閱讀 6284

1.

新增欄位的語法:

alter table tablename add (

column datatype [default value][null/not null],….);

事例:

------新增欄位-----

alter table 

test1

add (

name varchar2(30) default 『無名氏』 not null

);------一次性新增多欄位-----

alter table test1

add (name varchar2(30) default 『無名氏』 not null,

age integer default 22 not null,

has_money number(9,2));

2.修改欄位的語法:

alter table tablename modify (column datatype [default value][null/not null],….);

事例:-------修改乙個欄位-------

alter table

test1

modify (

name varchar2(16) default 『unknown』);

ps:比較正規的方式

alter table 

table_name

rename column 

field_name

to new_field_name; 3.

刪除欄位的語法:

alter table 

tablename

drop (

column

);事例:

alter table 

test1

drop column 

name;

Oracle 增加修改刪除字段

新增欄位的語法 alter table tablename add column datatype default value null not null 修改欄位的語法 alter table tablename modify column datatype default value null ...

Oracle增加修改刪除字段 主鍵

alter table xgj rename column old name to new name alter table tablename modify column datatype default value null not null 假設表xgj,有乙個欄位為name,資料型別char...

增加 修改 刪除

alter alter table student add column 學歷 varchar 20 新增一欄位 學歷 alter alter table student add 星座 char 50 not null after 性別 在性別之後新增一欄位星座 update update stud...