資源描述:
《在sql中刪除重復(fù)記錄(多種方法)》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫。
1、在SQL中刪除重復(fù)記錄(多種方法)在SQL中刪除重復(fù)記錄(多種方法) 學(xué)習(xí)sql有一段時(shí)間了,發(fā)現(xiàn)在我建了一個(gè)用來測(cè)試的表(沒有建索引)中出現(xiàn)了許多的重復(fù)記錄。后來總結(jié)了一些刪除重復(fù)記錄的方法,在Oracle中,可以通過唯一rowid實(shí)現(xiàn)刪除重復(fù)記錄;還可以建臨時(shí)表來實(shí)現(xiàn)...這個(gè)只提到其中的幾種簡單實(shí)用的方法,希望可以和大家分享(以表employee為例)?! QL>descemployee Name Null? Type --------------------------------------
2、----------------------------- emp_id NUMBER(10) emp_name VARCHAR2(20) salary NUMBER(10,2) 可以通過下面的語句查詢重復(fù)的記錄: SQL>select*fromemployee; EMP_IDEMP_NAME SALARY --------------------
3、---------------------------------------- 1sunshine 10000 1sunshine 10000 2semon 20000 2semon 20000 3xyz 30000 2semon 20000
4、 SQL>selectdistinct*fromemployee; EMP_IDEMP_NAME SALARY ------------------------------------------------------------ 1sunshine 10000 2semon 20000 3xyz 30000 SQL> select*fr
5、omemployeegroupbyemp_id,emp_name,salaryhavingcount(*)>1 EMP_IDEMP_NAME SALARY ------------------------------------------------------------ 1sunshine 10000 2semon 20000 SQL>select*fromemployeee1 wh
6、ererowidin(selectmax(rowid)fromemployee2 wheree1.emp_id=e2.emp_idand e1.emp_name=e2.emp_nameande1.salary=e2.salary); EMP_IDEMP_NAME SALARY ------------------------------------------------------------ 1sunshine 10000
7、3xyz 30000 2semon 20000 2.刪除的幾種方法: ?。?)通過建立臨時(shí)表來實(shí)現(xiàn) SQL>createtabletemp_empas(selectdistinct*fromemployee) SQL>truncatetableemployee;(清空employee表的數(shù)據(jù)) SQL>insertintoemployeeselect*fromtemp_emp; (再將臨時(shí)表里的內(nèi)容插回來) (2)通過唯一ro
8、wid實(shí)現(xiàn)刪除重復(fù)記錄.在Oracle中,每一條記錄都有一個(gè)rowid,rowid在整個(gè)數(shù)據(jù)庫