MySQL筆記之修改表的實現方法

來源:互聯網
上載者:User

我們在建立表的過程中難免會考慮不周,因此後期會修改表

修改表需要用到alter table語句

修改表名

複製代碼 代碼如下:mysql> alter table student rename person;
Query OK, 0 rows affected (0.03 sec)

這裡的student是原名,person是修改過後的名字

用rename來重新命名,也可以使用rename to

還有一種方法是rename table old_name to new_name

修改欄位的資料類型

複製代碼 代碼如下: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 PRIMARY KEY(id);
Query OK, 0 rows affected (0.18 sec)
Records: 0 Duplicates: 0 Warnings: 0

這裡同樣也用於多欄位設定

在表頭添加欄位

複製代碼 代碼如下: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欄位後面

tips:表中欄位的排序對錶不會有什麼影響,不過更合理的排序能便於理解表

刪除欄位

複製代碼 代碼如下: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 person DROP PRIMARY KEY;
Query OK, 0 rows affected (0.22 sec)
Records: 0 Duplicates: 0 Warnings: 0

由於主鍵沒有別名,所以使用drop會刪除所有主鍵

刪除表的外鍵約束

複製代碼 代碼如下: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變成普通鍵

至於刪除表的操作,在第三節有寫,設定外鍵在第四節也有寫

如果建立表的時候沒有設定外鍵,可使用上面的方法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.