首頁 > 資料庫 > mysql教程 > 如何修改mysql資料庫表結構

如何修改mysql資料庫表結構

coldplay.xixi
發布: 2023-01-04 09:37:31
原創
2643 人瀏覽過

修改mysql資料庫表結構的方法:1、檢視表結構;2、新增列;3、刪除列,程式碼為【mysql> alter table student drop column birthday】;4、修改列,程式碼為【mysql> alter table】。

如何修改mysql資料庫表結構

本教學操作環境:windows7系統、mysql 8.0.22版、thinkpad t480電腦。

相關免費學習推薦:mysql資料庫#(影片)

修改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資料庫表結構的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板