主頁 > 知識(shí)庫 > Oracle刪除重復(fù)的數(shù)據(jù),Oracle數(shù)據(jù)去重復(fù)

Oracle刪除重復(fù)的數(shù)據(jù),Oracle數(shù)據(jù)去重復(fù)

熱門標(biāo)簽:慧營銷crm外呼系統(tǒng)丹丹 開發(fā)外呼系統(tǒng) 哪個(gè)400外呼系統(tǒng)好 百度地圖標(biāo)注途經(jīng)點(diǎn) 地圖標(biāo)注養(yǎng)老院 愛客外呼系統(tǒng)怎么樣 哈爾濱電話機(jī)器人銷售招聘 圖吧網(wǎng)站地圖標(biāo)注 山東crm外呼系統(tǒng)軟件

Oracle  數(shù)據(jù)庫中查詢重復(fù)數(shù)據(jù):

select * from employee group by emp_name having count (*)>1;

 Oracle  查詢可以刪除的重復(fù)數(shù)據(jù)

select t1.* from employee t1 where (t1.emp_name) in (SELECT t2.emp_name from employee t2 group by emp_name having count (*)>1) and t1.emp_id not in (select min(t3.emp_id) from employee t3 group by emp_name having count (*)>1);

Oracle 刪除重復(fù)數(shù)據(jù)

delete from employee t1 where (t1.emp_name) in (SELECT t2.emp_name from employee t2 group by emp_name having count (*)>1) and t1.emp_id not in (select min(t3.emp_id) from employee t3 group by emp_name having count (*)>1);

您可能感興趣的文章:
  • oracle數(shù)據(jù)庫的刪除方法詳解
  • Oracle刪除數(shù)據(jù)報(bào)ORA 02292錯(cuò)誤的巧妙解決方法
  • oracle 數(shù)據(jù)按主鍵刪除慢問題的解決方法
  • Oracle數(shù)據(jù)庫中的級(jí)聯(lián)查詢、級(jí)聯(lián)刪除、級(jí)聯(lián)更新操作教程
  • Oracle誤刪除表數(shù)據(jù)后的數(shù)據(jù)恢復(fù)詳解
  • 徹底刪除Oracle數(shù)據(jù)庫的方法
  • oracle查詢重復(fù)數(shù)據(jù)和刪除重復(fù)記錄示例分享
  • oracle數(shù)據(jù)庫添加或刪除一列的sql語句
  • oracle 批量刪除表數(shù)據(jù)的幾種方法

標(biāo)簽:武漢 甘肅 青島 固原 和田 開封 承德 周口

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Oracle刪除重復(fù)的數(shù)據(jù),Oracle數(shù)據(jù)去重復(fù)》,本文關(guān)鍵詞  Oracle,刪除,重復(fù),的,數(shù)據(jù),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Oracle刪除重復(fù)的數(shù)據(jù),Oracle數(shù)據(jù)去重復(fù)》相關(guān)的同類信息!
  • 本頁收集關(guān)于Oracle刪除重復(fù)的數(shù)據(jù),Oracle數(shù)據(jù)去重復(fù)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章