zoukankan      html  css  js  c++  java
  • Oracle用其中一个表的数据更新另一个表

    update tab1 set val = 
    (select val from tab2 where tab1.id = tab2.id) 
    where exists (select 1 from tab2 where tab1.id = tab2.id)

    这样tab2中没有的部分就不会被更新到tab1,但如果tab2中没值的部分,tab1中就应该为空,那就把最后一句去掉,改成

    update tab1 set val = 
    (select val from tab2 where tab1.id = tab2.id) 

    不管去不去掉最后一句,一旦出现重复,就会报错

    有大佬的解决方法是用merge语法

    我这里还有个sb方法

    update tab1 set val = 
    (select MAX(val) from tab2 where tab1.id = tab2.id) 
    where exists (select 1 from tab2 where tab1.id = tab2.id)

    如果存在多条也要替换,那多条的值应该是一样的(暂时想不到不同还要替换的情况……),那么随便用哪个都无所谓了吧……

    (顺便表示,什么数据类型都能MAX的害羞

    不需要替换的话,就加条件剔除掉吧

  • 相关阅读:
    JavaScript面试库
    JS事件委托的原理和应用
    缓存ABC
    网络模型探究
    持续集成配置之Nuget
    angular应用容器化部署
    微服务随想
    .NET性能优化小技巧
    博客园博客小优化
    Emmet 简介
  • 原文地址:https://www.cnblogs.com/IceBlueBrother/p/8423173.html
Copyright © 2011-2022 走看看