美文网首页
update 更新多个关联字段

update 更新多个关联字段

作者: 学无_止境 | 来源:发表于2018-11-22 15:03 被阅读0次

    update t_gdzc_zc_info_ t

        set (t.ADDRESS, t.DBADRESSPRE, t.Stationname, t.SIGNALSOURCETAG) =

            (select a.DBADDRESS, a.ADDRESS, a.STATIONNAME, a.SIGNALSOURCETAG

              from T_UPLOAD_XLS_GDZC_ZC_INFO a

              where t.card_code = a.card_code

                and a.batch_id = 'db111')

      WHERE EXISTS

      (SELECT 1FROM T_UPLOAD_XLS_GDZC_ZC_INFO a WHERE t.card_code = a.card_code and a.batch_id = 'db111');

    oracle数据库语法

    相关文章

      网友评论

          本文标题:update 更新多个关联字段

          本文链接:https://www.haomeiwen.com/subject/lnnbtqtx.html