无码色色,久久久久久免费精品喷水,美女把胸罩解开让男生摸,欧美一级在线观看视频,色亚洲天堂,色综合天天综合给合国产

咨詢電話:023-88959644    24小時(shí)服務(wù)熱線:400-023-8809
NEWS CENTER ·
新聞動(dòng)態(tài)
關(guān)注中技互聯(lián) 關(guān)注前沿

如何在oracle內(nèi)刪除重復(fù)的數(shù)據(jù)?

發(fā)表日期:2013-05-10    文章編輯:辛步遼    瀏覽次數(shù):10    標(biāo)簽:

www.tmsmall666.cn

   刪除ORACLE重復(fù)的數(shù)據(jù)常用方式,根據(jù)rowid來編寫SQL腳本:

  delete from t_web

  where rowid in (select a.rowid, a.web_name

  from t_web a, t_web b

  where a.rowid > b.rowid

  and a.web_name = b.web_name);

  delete from t_web a

  where rowid not in

  (select max(b.rowid) from t_web b where a.web_name = b.web_name )

  delete from t_web

  where rowid not in (select max(rowid) from t_web a group by a.web_name);

  delete from tbl

  where (col1, col2) in

  (select col1, col2 from tblgroup bycol1, col2havingcount(*) > 1)

  and rowidnotin(selectnin(rowid) fromtblgroup bycol1,

  col2havingcount(*) > 1);

  腳本編寫完成后,你就可以看到Oracle數(shù)據(jù)庫內(nèi)那些重復(fù)的數(shù)據(jù)已經(jīng)清空。中級(jí)認(rèn)為此類清空方法還是比較靠譜的,所以就推薦給大家,請(qǐng)各位站長可以嘗試一下。

重慶中技互聯(lián)網(wǎng)信息咨詢有限公司 www.tmsmall666.cn

如沒特殊注明,文章均為中技互聯(lián)原創(chuàng),轉(zhuǎn)載請(qǐng)注明來自www.tmsmall666.cn
相關(guān)新聞

CopyrightZJCOO technology Co., LTD. All Rights Reserved.    

渝ICP 備11003429號(hào)

  • qq客服
  • 公眾號(hào)
  • 手機(jī)版
  • 新浪微博