Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a table with many columns in which I have to find the duplicate based on one column.

I.e. if I found duplicate customer_name in the Customer_name then

  1. I have to remove all repeating from the source table.
  2. Send all those rows to other table with same structure.
share|improve this question
What have you tried so far? – phillyd Sep 6 '12 at 9:51
@phillyd I am able to delete the duplicate rows but I am not able to send them to other table – Zerotoinfinite Sep 6 '12 at 9:53
But that is removing the second duplicate, I want all corrupted/faulty rows to the other table. I want to remove all duplicate not the second occuring duplicate – Zerotoinfinite Sep 6 '12 at 9:54
What are you using to find the duplicate rows? Seeing the code would help. I feel like the OUTPUT clause may help you: – phillyd Sep 6 '12 at 9:56
Mmmh ... My answer isn't good then ... How do you determine which one of the duplicate rows is the one you want to keep ? – LaGrandMere Sep 6 '12 at 9:56
show 1 more comment

3 Answers

up vote 2 down vote accepted

If you have two tables like this:

CREATE TABLE t1 (ID int, customerName varchar(64))
CREATE TABLE t2 (ID int, customerName varchar(64))

You can make something like this: (The ID column is for just to have a base for the deceision what to keep, you can change it as you need)

--First Copy

WITH CTE_T1
AS
(
SELECT
  ID,
  customerName,
  ROW_NUMBER() OVER(PARTITION BY customerName ORDER BY ID) as OrderOfCustomer
  FROM 
  t1
)
INSERT INTO t2
SELECT ID, customerName FROM cte_T1
WHERE OrderOfCustomer > 1;

--Then Delete

WITH CTE_T1
AS
(
SELECT
  ID,
  customerName,
  ROW_NUMBER() OVER(PARTITION BY customerName ORDER BY ID) as OrderOfCustomer
  FROM 
  t1
)
DELETE FROM CTE_T1
WHERE OrderOfCustomer > 1

Here is an SQLFiddle to show how it works.

share|improve this answer

I guess each row has a unique Id primary key.

This inserts into your duplicate rows table :

Insert into duplicateRowsTable
select * from myTable t1
where (select count(*) from myTable t2 where t1.customerId = t2.customerId) > 1

You delete from the duplicateRowsTable the good rows:

delete from duplicatesTable
where --this is not the faulty row for each customerId

finally you delete from your first table :

delete from myTable
where id IN (select id from duplicatesTable)
share|improve this answer

Try this:

For moving duplicates

INSERT Into DuplicatesTable
SELECT *
FROM 
(SELECT *, ROW_NUMBER() OVER(PARTITION BY Customer_name ORDER BY Customer_name) As RowID,
FROM SourceTable)  as temp
WHERE RowID > 1

For deteting:

WITH TableCTE
AS
(
SELECT *,
ROW_NUMBER() OVER(PARTITION BY Customer_name ORDER BY Customer_name) AS RowID
FROM SourceTable
)
DELETE
FROM TableCTE
WHERE RowID> 1
share|improve this answer
Insert won't work, because of SELECT *, because you have the extra RowID column, so it will try to insert one more column then it should. – András Ottó Sep 6 '12 at 10:17
@András Yes, I am aware of that but OP has not given the schema. While using he can remove the Select * & Take the columns he need from the select query. – KPL Sep 6 '12 at 10:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.