二維表的維護工具
--添加新的字段:alter table 表名 add 字段名 類型 [通常不加約束條件] alter table student add sphone number(11)
原表:
新增字段後的表:
修改原有的字段:【修改字段類型、修改字段名、刪除字段】spa
1 --修改字段類型:alter table 表名 modify 字段名 新類型 2 alter table student modify sphone varchar(11) 3 --修改字段名:alter table 表名 rename column 字段名 to 新字段名 4 alter table student rename column sphone to phone 5 --刪除字段:alter table 表名 column 字段名 6 alter table student drop column phone
表的修改和刪除設計
1 --修改表名:rename 原表名 to 新表名 2 rename student to student2 3 --刪除表:drop table 表名 4 drop table student
查看錶結構:desc 表名[命令窗口]: desc student;
通常這些操做在實際中運用的不多,在建表的初期都基本設計好,不會有太大的改動。都是增刪改查操做比較平凡,這些操做通常也都是用圖形界面化工具去管理操做,使用起來方便,不至於命令出錯而致使一系列沒必要要的麻煩。瞭解便可。
code