是的,我們可以更改列的順序。這可以使用 ALTER 命令和 AFTER 命令來設定單一列的新順序。讓我們先建立一個表 -
mysql> create table DemoTable -> ( -> `Student_Key_Age` int, -> `Student_Key_Name` varchar(20), -> `Student_Key_CountryName` varchar(20) -> ); Query OK, 0 rows affected (0.64 sec)
以下是更改列順序的查詢 -
mysql> alter table DemoTable modify column `Student_Key_Age` int after `Student_Key_Name`; Query OK, 0 rows affected (1.15 sec) Records: 0 Duplicates: 0 Warnings: 0
讓我們再次檢查表格描述 -
mysql> desc DemoTable;
這將產生以下輸出。正如您所看到的,列的順序發生了變化 -
+-------------------------+-------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-------------------------+-------------+------+-----+---------+-------+ | Student_Key_Name | varchar(20) | YES | | NULL | | | Student_Key_Age | int(11) | YES | | NULL | | | Student_Key_CountryName | varchar(20) | YES | | NULL | | +-------------------------+-------------+------+-----+---------+-------+ 3 rows in set (0.11 sec)
以上是我們可以改變 MySQL 中列的順序嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!