Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Jdbc uses the merge into function in oracle

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

Merge into can merge data already in the oracle data table. If there is, update, otherwise update

The following example passes the test after the jdbc data source is connected

1. Single data

Long companyAuthId = SeqkeyUtil.getSeqKey (vids, "COMPANY_AUTH_ID"); CompanyAuth comtmp = companyList.get (0); String sql = "merge into COMPANY_AUTH auth using (select? MOBILE from dual) tmp on (auth.mobile=tmp.mobile)" + "WHEN MATCHED THEN" + "UPDATE SET auth.reserve=?" + "WHEN NOT MATCHED THEN" + "INSERT (id,MOBILE) VALUES"; vids.update (sql, new Object [] {comtmp.getMobile (), comtmp.getReserve (), companyAuthId+ ", comtmp.getMobile ()})

2. Multiple pieces of data (batch processing)

Long companyAuthId = SeqkeyUtil.getSeqKey (vids, "COMPANY_AUTH_ID"); / / seqs table primary key uses List batch = new ArrayList (); for (CompanyAuth company: companyList) {Object [] values = new Object [] {company.getMobile (), company.getReserve (), companyAuthId+ ", company.getMobile ()}; batch.add (values);} String sql =" merge into COMPANY_AUTH auth using (select? MOBILE from dual) tmp on (auth.mobile=tmp.mobile) "+" WHEN MATCHED THEN "+" UPDATE SET auth.reserve=? "+" WHEN NOT MATCHED THEN "+" INSERT (id,MOBILE) VALUES "; vids.batchUpdate (sql, batch)

If more than one table appears, you only need to target using (select? MOBILE from dual) tmp on can be modified.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report