oracle plsql 2个表字段对比更新问题
oracleplsql如何批量把(表1,表2)中的3个字段,字段1字段2字段3的值各自对比,假如某2个字段的值相同,另外一个字段的值就更新为表1字段的值?...
oracle plsql 如何批量把(表1,表2)中的3个字段,字段1字段2字段3的值各自对比,假如某2个字段的值相同,另外一个字段的值就更新为表1字段的值?
展开
3个回答
推荐于2017-09-02
展开全部
oracle plsql 2个表字段对比更新问题
update tab1 t1 set col3=(
select col3 from tab2 t2 where t2.col1=t1.col1 and t2.col2=t1.col2
) where exists (
select 1 tab2 t2 where t2.col1=t1.col1 and t2.col2=t1.col2
)
update tab1 t1 set col3=(
select col3 from tab2 t2 where t2.col1=t1.col1 and t2.col2=t1.col2
) where exists (
select 1 tab2 t2 where t2.col1=t1.col1 and t2.col2=t1.col2
)
网易云信
2023-12-06 广告
2023-12-06 广告
UIkit是一套轻量级、模块化且易于使用的开源UI组件库,由YOOtheme团队开发。它提供了丰富的界面元素,包括按钮、表单、表格、对话框、滑块、下拉菜单、选项卡等等,适用于各种类型的网站和应用程序。UIkit还支持响应式设计,可以根据不同...
点击进入详情页
本回答由网易云信提供
展开全部
update tab1 t1 set col3=(
select col3 from tab2 t2 where t2.col1=t1.col1 and t2.col2=t1.col2
) where exists (
select 1 tab2 t2 where t2.col1=t1.col1 and t2.col2=t1.col2
)
select col3 from tab2 t2 where t2.col1=t1.col1 and t2.col2=t1.col2
) where exists (
select 1 tab2 t2 where t2.col1=t1.col1 and t2.col2=t1.col2
)
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
使用游标即可
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询