Update rows in one table with data from another table based on one column in each being equal(使用另一个表中的数据更新一个表中的行,基于每个列中的一列相等)
问题描述
更新许多行到一个表中基于每个列中的一列相等(user_id).
Update many rows into one table from another table based on one column in each being equal (user_id).
两个表都有一个 user_id
列.当user_id
列相等时,需要将t2
中的数据插入到t1
中.
both tables have a user_id
column. Need to insert data from t2
into t1
when the user_id
column are equal.
提前感谢您提供的任何帮助.
Thank you in advance for any help offered.
推荐答案
update
table1 t1
set
(
t1.column1,
t1.column2
) = (
select
t2.column1,
t2.column2
from
table2 t2
where
t2.column1 = t1.column1
)
where exists (
select
null
from
table2 t2
where
t2.column1 = t1.column1
);
或者这个(如果 t2.column1 <=> t1.column1 是多对一并且其中任何一个都是好的):
Or this (if t2.column1 <=> t1.column1 are many to one and anyone of them is good):
update
table1 t1
set
(
t1.column1,
t1.column2
) = (
select
t2.column1,
t2.column2
from
table2 t2
where
t2.column1 = t1.column1
and
rownum = 1
)
where exists (
select
null
from
table2 t2
where
t2.column1 = t1.column1
);
这篇关于使用另一个表中的数据更新一个表中的行,基于每个列中的一列相等的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用另一个表中的数据更新一个表中的行,基于每个列中的一列相等


基础教程推荐
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- 带更新的 sqlite CTE 2022-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01