【发布时间】:2016-01-18 14:24:00
【问题描述】:
我想用另一个表中的值更新 table_a 的 col1。
我做了一个选择
with tmp as (
blar~
)
select col1 from table_b b, tmp t
where 1=1
and b.col2 = t.col_x
更新加入条件
table_a.col3 = table_b.col3
【问题讨论】:
标签: oracle select sql-update multiple-columns