是的,我們可以從另一個表向一個表添加一列。讓我們首先創建兩個表。創建表的查詢如下 –
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 中的另一個表向一個表添加一列嗎?的詳細內容,更多請關注www.92cms.cn其它相關文章!