是的,我們可以從另一個表格新增一列到一個表格。讓我們先建立兩個表。建立表格的查詢如下 -
mysql> create table FirstTable -> ( -> UserId int, -> UserName varchar(20) -> ); Query OK, 0 rows affected (1.48 sec)
現在建立第二個表。建立第二個表的查詢如下 -
mysql> create table SecondTable -> ( -> UserId int, -> UserAge int -> ); Query OK, 0 rows affected (1.57 sec)
現在,將年齡列新增到第一個表中。首先,新增 Age 列,然後使用 UPDATE 指令將此 Age 列設定為 SecondTable 的 UserAge 列。查詢如下 -
mysql> ALTER TABLE FirstTable ADD COLUMN Age TINYINT UNSIGNED DEFAULT 0; Query OK, 0 rows affected (1.53 sec) Records: 0 Duplicates: 0 Warnings: 0
現在,這是更新第一個表以將 Age 列設定為 SecondTable 的 UserAge 列的查詢。查詢如下 -
mysql> UPDATE FirstTable tbl1 -> INNER JOIN SecondTable tbl2 ON tbl1.UserId = tbl2.UserId -> SET tbl1.Age = tbl2.UserAge; Query OK, 0 rows affected (0.00 sec) Rows matched: 0 Changed: 0 Warnings: 0
現在藉助 DESC 指令檢查第一個表的描述。查詢如下 -
mysql> desc FirstTable;
以下是顯示我們成功從另一個表格新增一列的輸出 -
+----------+---------------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +----------+---------------------+------+-----+---------+-------+ | UserId | int(11) | YES | | NULL | | | UserName | varchar(20) | YES | | NULL | | | Age | tinyint(3) unsigned | YES | | 0 | | +----------+---------------------+------+-----+---------+-------+ 3 rows in set (0.53 sec)
以上是我們可以從 MySQL 中的另一個表格為一個表格新增一列嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!