如何从 Mysql 中的另一个表中将列添加到表中?
我有两张桌子
- table1
- table2
Tabel1 包含 2 列
Tabel1 contains 2 columns
- 身份证
- 姓名
Tabel2 包含 2 列
Tabel2 contains 2 columns
- 身份证
- 年龄
A 想将 table2 中的 age 列添加到 table1 (WHERE table1.id = table2.id)
A want to add age column from table2 to table1 (WHERE table1.id = table2.id)
那么 table1 应该包含 3 列
Then table1 should contains 3 columns
- 身份证
- 姓名
- 年龄
推荐答案
先在table1中添加Age列
First add Age column in table1
ALTER TABLE table1 ADD COLUMN Age TINYINT UNSIGNED DEFAULT 0;
然后使用打击查询更新该列
then update that column using blow query
UPDATE table1 t1
INNER JOIN Tabel2 t2 ON t1.id = t2.id
SET t1.age = t2.age;
相关文章