以下的文章主要介绍的是Oracle 多表关联更新多个字段 带条件的具体操作方法,如果你是Oracle 多表关联更新多个字段 带条件实际应用方面的新手,你就可以通过以下的文章对Oracle 多表关联更新多个字段 带条件是如何正确使用的方法有一个更好的了解,以下就是文章的详细内容的介绍
Oracle 多表关联更新多个字段 带条件
- update student A
- set (A.name,a.dq) =
- (select B.bname,b.bdq
- from newstudent B
- where B.Bid = A.id
- and A.dq = 10
- )
- where exists (select 1
- from newstudent B
- where B.Bid = A.id
- and A.dq = 10
- );
上述的相关内容就是对Oracle 多表关联更新多个字段 带条件以及相关图案的描述,希望会给你带来一些帮助在此方面。
【编辑推荐】