MySQL- Remove Duplicate Rows

Image frame
MySQL- Remove Duplicate Rows
Maruf
Nov 22nd, 2009
Maruf scribbled this post.

I’ve been working with meduim sized tables (2.1million rows) in MySQL lately. One particular table had a lot of duplicate rows, which I needed to filter out. I’m quickly going to demonstrate how I did it. I’m sure there are many ways of doing this, but this method proved to be the easiest for me.

Example 1: Removing rows with a specific duplicate field:

As you can see, the field “postcode” has duplicated rows.
Duplicate MySQL field

STEP 1: Copy table structure

I used the following code to duplicate the table structure of `postcodes` (if you use PhpMyAdmin, you can use the shortcuts):

View Code MYSQL
1
2
3
4
5
CREATE TABLE `DB_NAME`.`postcodes2` (
`postcodenospace` varchar( 10 ) NOT NULL ,
`longitude` varchar( 15 ) NOT NULL ,
`latitude` varchar( 15 ) NOT NULL
)

STEP 2: run query:

View Code MYSQL
1
2
3
4
5
6
7
8
9
10
INSERT INTO
postcodes2
(
postcode,
longitude,
latitude
)
SELECT postcode,longitude,latitude
FROM `postcodes` 
GROUP BY postcode

That’s it. All the rows with a unique postcode will get inserted into the table “postcodes2″.

The result

Duplicate MySQL field result

The key is in the SELECT query, where the postcode field is grouped together. That effectively puts all the duplicate postcodes together, generating a result of rows with unique postcodes.

Example 2: Removing duplicate rows:

STEP 1: Copy table structure

Use the code above to copy the table structure.

This example is slightly different, look at the data:

Duplicate MySQL rows

The previous example simply filtered the data by duplicate postcodes. As you can see, the highlighted row has different longitude and latitude values. So if you want to filter the data by unique rows, you need the following query:

STEP 2: Run the query

View Code MYSQL
1
2
3
4
5
6
7
8
9
10
INSERT INTO
postcodes2
(
postcode,
longitude,
latitude
)
SELECT postcode,longitude,latitude
FROM `postcodes` 
GROUP BY concat(postcode,longitude,latitude)

The result

Duplicate MySQL rows result

Again, the key is the SELECT query. This time the query groups all the fields together (using the CONCAT function), to return rows with completely unique values.


Filed away: MySQL

comments

Image frame
1

Good article! One point of clarification to your readers though: you will want to be sure that the name of the column you are entering data into matches the name of the column as you set it up when you were creating your table. Ex: You created the table thusly:
CREATE TABLE `DB_NAME`.`postcodes2` (
`postcodenospace` varchar( 10 ) NOT NULL ,
`longitude` varchar( 15 ) NOT NULL ,
`latitude` varchar( 15 ) NOT NULL
)

So when you INSERT data it would be

INSERT INTO
postcodes2
(
postcodenospace,
longitude,
latitude
)

Nice work – thanks again for posting ;) .

Kevin Pajak
Feb 6th, 2010
Image frame
2

Great! my question is how to prevent it happen again in the future?

kandar
Feb 6th, 2010
Image frame
3

@Kevin,
Good point :)

@Kandar,
You’ll need to use the IGNORE function, while also setting the correct “unique” fields.

I will write an article on this shortly. Not sure I can explain how to do it without a live example.

Kind regards.

Maruf
Feb 6th, 2010
Image frame
4

thanks for your response. I’ll be wait for that article.

kandar
Feb 8th, 2010

feel free to leave a scribble

Name:
Email:
gravatar
Want an image next to your comments?
visit gravatar.com
Message:
Get a free quote