使用另一个表中的数据更新一个表中的行,基于每个列中的一列相等

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
      ); 

这篇关于使用另一个表中的数据更新一个表中的行,基于每个列中的一列相等的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)