alter table 語(yǔ)句用于創(chuàng)建后對(duì)表的修改, 基礎(chǔ)用法如下:
基本形式:
alter table 表名 add 列名 列數(shù)據(jù)類(lèi)型 [after 插入位置];
示例:
在表的最后追加列 address:
alter table students add address char(60);
在名為 age 的列后插入列 birthday:
alter table students add birthday date after age;
基本形式:
alter table 表名 change 列名稱 列新名稱 新數(shù)據(jù)類(lèi)型;
示例:
將表 tel 列改名為 telphone:
alter table students change tel telphone char(13) default "-";
將 name 列的數(shù)據(jù)類(lèi)型改為 char(16):
alter table students change name name char(16) not null;
基本形式: alter table 表名 drop 列名稱;
示例:
刪除 birthday 列:
alter table students drop birthday;
基本形式:
alter table 表名 rename 新表名;
示例:
重命名 students 表為 workmates:
alter table students rename workmates;
基本形式:
drop table 表名;
示例: 刪除 workmates 表:
drop table workmates;
基本形式:
drop database 數(shù)據(jù)庫(kù)名;
示例: 刪除 samp_db 數(shù)據(jù)庫(kù):
drop database samp_db;
更多建議: