以下的文章主要介紹的是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 多表關聯更新多個字段 帶條件以及相關圖案的描述,希望會給你帶來一些幫助在此方面。