How to remove duplicates from database?

Discussion in 'MySQL' started by christofred, Aug 6, 2009.

  1. #1
    Just i'm wondering to know about. Is there any cheapest software available?
     
    christofred, Aug 6, 2009 IP
  2. Agnel

    Agnel Banned

    Messages:
    174
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Hello Chris,

    Yes, There are many software package to remove duplicates from the database with the free trial download.

    By installing that kind of software you can remove duplicates from the database.

    For better understanding about the software package. Check the free trial of data match. I hope this source will resolve your issue.

    Sourcelink: http://www.dataladder.com/

    Thanks
     
    Agnel, Aug 6, 2009 IP
  3. marshalprince

    marshalprince Peon

    Messages:
    435
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I think people should atleast read the other people thread before posting. The same thread is here on DP by some othet member.
     
    marshalprince, Aug 6, 2009 IP
  4. christofred

    christofred Peon

    Messages:
    30
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #4
    marshalprince,

    Sorry for that. I have missed out. Can you please let me know the thread URL?

    Thanks in advance.
     
    christofred, Aug 6, 2009 IP
  5. marshalprince

    marshalprince Peon

    Messages:
    435
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #5
    marshalprince, Aug 6, 2009 IP
  6. Goramba

    Goramba Peon

    Messages:
    128
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Why bother with software? You can do it with just a few commands:

    create table two like one;
    insert into two select * from one group by duplicatecolumn;
    drop table one;
    rename table two to one;
     
    Goramba, Aug 8, 2009 IP
  7. TheDataPlanet.com

    TheDataPlanet.com Well-Known Member

    Messages:
    503
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    108
    #7
    If you have are using mysql with phpmyadmin installed or you know how to log into your mysql user account, execute these queries would result in a table with all entries unique: find and remove duplicate records.

    The first thing you must be sure is by what fields / columns what you want a record identified as unique, then SELECT DISTINCT of them or GROUP BY them.
     
    TheDataPlanet.com, Aug 8, 2009 IP