我們在建立表的過程中難免會考慮不周,因此後期會修改表修改表需要用到alter table語句
修改表名
複製代碼 代碼如下:mysql> alter table student rename person;
Query OK, 0 rows affected (0.03 sec)
這裡的student是原名,person是修改過後的名字
用rename來重新命名,也可以使用rename to
修改欄位的資料類型 複製代碼 代碼如下:mysql> alter table person modify name varchar(20);
Query OK, 0 rows affected (0.18 sec)
Records: 0 Duplicates: 0 Warnings: 0
此處modify後面的name為欄位名,我們將原來的varchar(25)改為varchar(20)
修改欄位名 複製代碼 代碼如下:mysql> alter table person change stu_name name varchar(25);
Query OK, 0 rows affected (0.20 sec)
Records: 0 Duplicates: 0 Warnings: 0
這裡stu_name是原名,name是新名
需要注意的是不管改不改資料類型,後面的資料類型都要寫
如果不修改資料類型只需寫成原來的資料類型即可
tips:我們同樣可以使用change來達到modify的效果,只需在其後寫一樣的欄位名
增加無完整性條件約束條件的欄位 複製代碼 代碼如下:mysql> alter table person add sex boolean;
Query OK, 0 rows affected (0.21 sec)
Records: 0 Duplicates: 0 Warnings: 0
此處的sex後面只跟了資料類型,而沒有完整性條件約束條件
增加有完整性條件約束條件的欄位 複製代碼 代碼如下:mysql> alter table person add age int not null;
Query OK, 0 rows affected (0.17 sec)
Records: 0 Duplicates: 0 Warnings: 0
地處增加了一條age欄位,接著在後面加上了not null完整性條件約束條件
在表頭添加欄位 複製代碼 代碼如下:mysql> alter table person add num int primary key first;
Query OK, 0 rows affected (0.20 sec)
Records: 0 Duplicates: 0 Warnings: 0
預設情況下添加欄位都是添加到表尾,在添加語句後面加上first就能添加到表頭
在指定位置添加欄位 複製代碼 代碼如下:mysql> alter table person add birth date after name;
Query OK, 0 rows affected (0.20 sec)
Records: 0 Duplicates: 0 Warnings: 0
這裡添加一條新欄位放在name欄位後面
tps:表中欄位的排序對錶不會有什麼影響,不過更合理的排序能便於理解表
刪除欄位 複製代碼 代碼如下:mysql> alter table person drop sex;
Query OK, 0 rows affected (0.18 sec)
Records: 0 Duplicates: 0 Warnings: 0
和前面刪除表或資料庫一樣,這裡也需要用drop
不同的是,刪除欄位還要用alter table跟著表名
修改欄位到第一個位置 複製代碼 代碼如下:mysql> alter table person modify id int first;
Query OK, 0 rows affected (0.20 sec)
Records: 0 Duplicates: 0 Warnings: 0
first在前面已經講過,此處要注意的是欄位後面要寫資料類型
修改欄位到指定位置 複製代碼 代碼如下:mysql> alter table person modify name varchar(25) after id;
Query OK, 0 rows affected (0.18 sec)
Records: 0 Duplicates: 0 Warnings: 0
我們把name欄位放到了id後面,此處的varchar(25)要寫全,varchar不行
建議操作以上步驟之前都先desc table
修改表的儲存引擎 複製代碼 代碼如下:mysql> alter table user rename person;
Query OK, 0 rows affected (0.05 sec)
這裡先不具體講各個儲存引擎的特點,內容比較多
修改完之後別忘了使用show create table語句查看,第三節有寫用法
tips:如果表中已存在很多資料,不要輕易修改儲存引擎
增加表的外鍵 複製代碼 代碼如下:mysql> alter table score add constraint fk foreign key(stu_id) references student(id);
Query OK, 10 rows affected (0.18 sec)
Records: 10 Duplicates: 0 Warnings: 0
這裡只需使用add增加即可,後面的文法參見第四節中的外鍵設定
刪除表的外鍵約束 複製代碼 代碼如下:mysql> alter table student3 drop foreign key fk;
Query OK, 0 rows affected (0.18 sec)
Records: 0 Duplicates: 0 Warnings: 0
由於基本的表結構描述無法顯示外鍵,所以在進行此操作前最好使用show create table查看錶
這裡的fk就是剛剛設定的外鍵
需要注意的是:如果想要刪除有關聯的表,那麼必先刪除外鍵
刪除外鍵後,原先的key變成普通鍵
至於刪除表的操作,在第三節有寫,設定外鍵在第四節也有寫如果建立表的時候沒有設定外鍵,可使用上面的方法