Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: How do I check for partial duplicates?
I think this would help,
SELECT MEM_ID, MEM_NAME, COUNT(*)
FROM MEM_INFO
GROUP BY MEM_ID, MEM_NAME
HAVING COUNT(*) > 1;
Suerte !! (Good Luck)
Ramon E. Estevez
com.banilejas_at_codetel.net.do <mailto:com.banilejas_at_codetel.net.do>
809-565-3121
-----Mensaje original-----
De: root_at_fatcity.com [mailto:root_at_fatcity.com]En nombre de Chris Rezek
Enviado el: Wednesday, 15 August, 2001 3:48 PM
Para: Multiple recipients of list ORACLE-L
Asunto: How do I check for partial duplicates?
We have a table that may have partial duplicate rows. What select statement do I write to return the partial duplicates?
table_name = MEM_INFO
MEM_ID MEM_NAME MEM_TIME MEM_LAST
I am concerned about two rows having the same MEM_ID and MEM_NAME. Having the same MEM_TIME and MEM_LAST is okay.
Thanks,
Chris
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Chris Rezek
INET: crezek_at_dotclick.com
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Ramon Estevez
INET: com.banilejas_at_codetel.net.do
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Wed Aug 15 2001 - 15:37:04 CDT
![]() |
![]() |