您好,登錄后才能下訂單哦!
這篇文章主要介紹了怎么修改mysql數據庫表結構,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
修改mysql數據庫表結構的方法:1、查看表結構;2、添加列;3、刪除列,代碼為【mysql> alter table student drop column birthday】;4、修改列,代碼為【mysql> alter table】。
修改mysql數據庫表結構的方法:
1、查看表結構
mysql> show create table student; +---------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Table | Create Table | +---------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | student | CREATE TABLE `student` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `NAME` varchar(20) NOT NULL, `AGE` int(11) NOT NULL, PRIMARY KEY (`ID`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 | +---------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ 1 row in set (0.09 sec)
2、添加列
mysql> alter table student add column birthday datetime; Query OK, 0 rows affected (2.06 sec) Records: 0 Duplicates: 0 Warnings: 0
3、刪除列
mysql> alter table student drop column birthday; Query OK, 0 rows affected (0.80 sec) Records: 0 Duplicates: 0 Warnings: 0
4、修改列
--1.修改列的類型 mysql> alter table student modify age int not null; Query OK, 0 rows affected (0.09 sec) Records: 0 Duplicates: 0 Warnings: 0 --2.修改列的名稱 mysql> alter table student change column name sname varchar(20); Query OK, 0 rows affected (1.31 sec) Records: 0 Duplicates: 0 Warnings: 0
感謝你能夠認真閱讀完這篇文章,希望小編分享怎么修改mysql數據庫表結構內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。