Skip to content
Advertisement

How to drop duplicate rows from postgresql sql table

I have the following dataset in a postgresql table called testtable in testdb.

I have accidentally copied over the database and duplicated rows.

How can I delete the duplicates?

Row 1 and row 5 are copies in this frame and row 2 and row 4 are copies too.

I have never used sql before to drop duplicates I have no idea where to start.

I tried

But all it did was show me howmany duplicates I had in each day,

Like this

There should only be 5 unique records in each creation_timestamp.

It doesnt show me the duplicates and even if i did it would have no idea how to drop them.

Advertisement

Answer

That is a lot of rows to delete. I would suggest just recreating the table:

After you have validated the data, you can reload it if you really want:

This process should be much faster than deleting 90% of the rows.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement