二維表的修改維護

2021-09-27 11:26:27 字數 651 閱讀 8570

二維表的維護

--新增新的字段:

--alter table 表名 add 欄位名 型別

alter table student add sphone number(11)--在學生表中新增新的字段

--修改原有字段

--修改字段型別

--alter table 表名 modify 欄位名 新的型別

alter table  student modify sphone varchar2(11)

--修改欄位名

--alter table 表名 rename column 欄位名 to 新的欄位名

alter table student rename column sphone to phone 

--刪除字段

--alter table 表名 drop column 欄位名

alter table student drop column phone

--修改表名

--rename 原有表名 to 新的表名

rename student to student2

rename student2 to student

--刪除表

--drop table 表名

drop table student 

二維表的維護

二維表的維護 新增新的字段 alter table 表名 add 欄位名 型別 alter table student add sphone number 11 在學生表中新增新的字段 修改原有字段 修改字段型別 alter table 表名 modify 欄位名 新的型別 alter table ...

二維表的字段新增 刪除 修改 表名的修改

二維表的維護 新增新的字段 alter table 表名 add 欄位名 型別 alter table student add sphone number 11 在學生表中新增新的字段 修改原有字段 修改字段型別 alter table 表名 modify 欄位名 新的型別 alter table ...

一維表轉二維表(mysql)

例子資料 drop table ifexists tmp0103.temp test create table tmp0103.temp test id int 11 not null auto increment,class varchar 255 default null,score doubl...