We as a developer, often come across situations where we have to work on database related stuffs. Mostly it is done when client send you its data in form of excel sheets and you push that data to database tables after some excel manipulations. I have also done it many times.
A very common problem faced in this approach is that it might result in duplicate rows at times, because data sent is mostly from departments like HR and finance where people are not well aware of data normalization techniques [:-)].
I will use Employee table where column names are id, name, department and email.
Below are the SQL scripts for generating the test data.
Create schema TestDB; CREATE TABLE EMPLOYEE ( ID INT, NAME Varchar(100), DEPARTMENT INT, EMAIL Varchar(100) ); INSERT INTO EMPLOYEE VALUES (1,'Anish',101,'anish@howtodoinjava.com'); INSERT INTO EMPLOYEE VALUES (2,'Lokesh',102,'lokesh@howtodoinjava.com'); INSERT INTO EMPLOYEE VALUES (3,'Rakesh',103,'rakesh@howtodoinjava.com'); INSERT INTO EMPLOYEE VALUES (4,'Yogesh',104,'yogesh@howtodoinjava.com'); --These are the duplicate rows INSERT INTO EMPLOYEE VALUES (5,'Anish',101,'anish@howtodoinjava.com'); INSERT INTO EMPLOYEE VALUES (6,'Lokesh',102,'lokesh@howtodoinjava.com');
Solution:
DELETE e1 FROM EMPLOYEE e1, EMPLOYEE e2 WHERE e1.name = e2.name AND e1.id > e2.id;
Above sql query will delete rows where name field is duplicate and only those unique rows will be retained where name is unique and ID field is lowest. For example rows with ID 5 and 6 will be deleted and rows with 1 and 2 will be retained.
If you want to retain rows with latest generated ID values, then reverse the condition in where clause to e1.id < e2.id like this:
DELETE e1 FROM EMPLOYEE e1, EMPLOYEE e2 WHERE e1.name = e2.name AND e1.id > e2.id;
If you want to compare multiple fields and add appropriate where clause.
Note: Please execute above (or modified) query first on test data always to make sure it is producing the expected output.
Happy Learning !!
Hareesh
Hi Lokesh,
can you tell me how works in below scenario.
INSERT INTO EMPLOYEE VALUES (1,’Anish’,101,’anish@howtodoinjava.com’);
INSERT INTO EMPLOYEE VALUES (2,’Lokesh’,102,’lokesh@howtodoinjava.com’);
INSERT INTO EMPLOYEE VALUES (3,’Rakesh’,103,’rakesh@howtodoinjava.com’);
INSERT INTO EMPLOYEE VALUES (4,’Yogesh’,104,’yogesh@howtodoinjava.com’);
–These are the duplicate rows
INSERT INTO EMPLOYEE VALUES (1,’Anish’,101,’anish@howtodoinjava.com’);
INSERT INTO EMPLOYEE VALUES (2,’Lokesh’,102,’lokesh@howtodoinjava.com’);
in duplicate rows id for Anish and Lokesh same. how will delete records.
Thanks.
Anvesh
Nice Article!
It really helps to all people of database community.
I have also prepared two small demo to find and delete all duplicate records from the table of MySQL.
You can visit my articles here:
https://www.dbrnd.com/2015/09/find-duplicate-records-in-mysql/
https://www.dbrnd.com/2015/09/delete-all-duplicate-rows-in-mysql/
Sanjay Verma
delete t1 from users t1, users t2 where t1.id<t2.id and t1.gender=t2.gender;
chetan
Executes well for me .
Ashok
Sir i need to get a pdf report for students with ireports ,from more than one table..if i pass new JRE EmptydataSourse() .the design is displaying,but with Connection Object only blank pdf is displaying ..i am using struts 1.x ,can u please give me any suggetions for this task.
Lokesh Gupta
A simple data source implementation that simulates a data source with a given number of virtual records inside. It is called empty data source because even though it has one or more records inside, all the report fields are null for all the virtual records of the data source.
http://jasperreports.sourceforge.net/api/net/sf/jasperreports/engine/JREmptyDataSource.html
Looks like it’s correct behavior. Not sure because i really have not much experience with Jasper reports.
Mad-hab
How the query will change if there is not Id column in the table , rest all remain as mentioned?
Lokesh Gupta
In that case, what makes two rows duplicates? By what logic you will identify two duplicate rows? And if you identify such logic, then convert it to query.. I hope I make sense.
Victor
It makes sence, but not resolves a problem.
I saggest another method: add unique index to the table with some fields to check the duplicates. For example,
ALTER IGNORE TABLE `employee` ADD UNIQUE INDEX `name_email` (`name`,`email`);
Bob
How long should your example above take when executed on a table with over 300,000 rows? I had to execute the following to even get your example to work on my table:
SET SESSION SQL_BIG_SELECTS=1;
Thanks!
Lokesh Gupta
Hey Bob, I have not executed above query on big tables yet so can’t comment on performance of it. I believe that if database table is large, then we should use temp table approach. And never forget to back up data first .. 🙂
Rajendra Joshi
If we have database and table already created in mysql
then how to get database connection in spring 3.2
Lokesh Gupta
you will need to configure ibatis or hibernate from spring context. google it for now. i am not good health to help you right now.