二維表的維護

2021-09-29 16:25:29 字數 676 閱讀 2393

--二維表的維護

--新增新的字段:

--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 ...

一維表轉二維表(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...

標準二維表問題

問題描述 設n是乙個正整數,2 n的二維表是由正整數1,2,2n組成的2 n陣列,該陣列的每行從左到右遞增,每列從上到下遞增。這樣的陣列為標準二維表。輸入乙個整數n 0 輸入n輸出乙個整數 樣例輸入 3 樣例輸出 5遞迴的 利用遞迴時,我們基於入棧和出棧的思想來解決問題 1 如果元素出現在第乙個位置...