Navigation
- FAQ Home
- All categories
- About Webyog support and about this FAQ
- About the SQLyog program
- Connection issues
- Using the GUI
- Managing your MySQL Database Systems
- Database Schema Synchronization
- MySQL DATA synchronization
- SQL Scheduler and Reporting Tool
- Importing external data
- Backup/Restore
- SQLyog Job Agent (SJA)
- Working with Views, Stored Procedures and Triggers
- Character Set and Localization Issues
- MySQL bugs that affect SQLyog
- Questions on Open Source and Compiling
- Sitemap
1 user online | 1 Guest and 0 Registered
Most popular FAQs
- I get error 1130 "Host is not allowed to ... (463062 views)
- Error no. 2003: Can't connect... (378720 views)
- SQLyog Version History (231862 views)
- Error no. 1045: "Connection denied..." (192753 views)
- Error No. 2005: Unknown MySQL server host... (174852 views)
- Error no. 1251: "Client does not support authentication..." (163332 views)
- Can I use SQLyog with the WINE Windows emulator ... (155023 views)
- What is HTTP-tunneling? (129779 views)
- What Is SSH and SSH-tunneling? (101239 views)
- Introduction to the 'SQLyog Job Agent' (SJA) (99167 views)
Latest FAQs
- SQLyog Version History (2014-06-08 10:22)
- I get error 1130 "Host is not allowed to ... (2014-01-30 12:21)
- About CHUNKs and BULKs (2014-01-09 11:53)
- SQLyog is a client for the MySQL server - ... (2013-08-04 04:48)
- Problems creating a functional DSN on 64 bit Windows. ... (2013-07-22 08:34)
Sticky FAQs
ID #1133
How Do I Remove Duplicates From My Databases?
Removing duplicate rows from database tables can be a problem. The problem is that with the common SQL syntax
DELETE FROM mytable WHERE {where condition};
.. you cannot specify a where-condition that will be satisfied with all duplicates minus one. This SQL will remove ALL rows that satisfy the where-condition. And what you wanted was to remove all but one! SQLyog will warn you, but cannot do anything else! Refer to http://webyog.com/faq/28_70_en.html
If you know that there are for instance 4 duplicate rows you can of course
DELETE FROM mytable WHERE {where condition} LIMIT 3;
.. but if you don't know the numbers of duplicates (and you even might not know for which rows of a table duplicates exist) you will have to execute a
SELECT COUNT(*) from mytable WHERE {where condition};
... for every row. When duplicates exist it most likely is because of a buggy application and hundreds or thousands of such duplicate rows may exist.
A more efficient solution to your problem is to create a copy of the table and use the SQL syntax "INSERT IGNORE INTO..." or "REPLACE INTO..." instead of just "INSERT INTO".
If your old/source table is like
CREATE TABLE ´oldtest´ (
´ID´ int(10) unsigned NOT NULL auto_increment,
´n´ int(11) default NULL,
´t´ varchar(50) default NULL,
PRIMARY KEY (´ID´)
)
or just
CREATE TABLE ´test´ (
´n´ int(11) NOT NULL,
´t´ varchar(50) NOT NULL,
)
then create a new/target table like (note: you define a PK on ALL or at least A LOT of columns of the table)
CREATE TABLE ´test´ (
´n´ int(11) NOT NULL,
´t´ varchar(50) NOT NULL,
PRIMARY KEY (´n´,´t´)
)
Now you need to read values from source (´oldtest´) and for every row in source execute
INSERT IGNORE INTO newtest (n,t)
values (n_value_for_the_source_row,t_value_for_the_source_row);
(or REPLACE INTO...)
INSERT IGNORE INTO will skip duplicate rows in target, REPLACE INTO will overwrite, but the result will be the same: only 1 row with the same data!
Now you can ALTER TABLE, drop the 'intermediate multi-column PK', create a new ID column and define it as the PK.
However there is no way to do this in 'pure' SQL. You have more options:
1) using an external script/application reading the source on a per row base and INSERT IGNORE/REPLACE INTO the target.
2) use a Stored Procedure (with a cursor that 'runs through' the source row-by-row and does the same)
3) You may use SQLyog Import External Data Tool. It is very easy actually!
With SQLyog Import External Data Tool and the above example do this:
a) Create the target table (with the 'intermediate multi-column PK') in advance in another database than source
b) Create a DNS with the MyODBC driver 3.51 pointing to the database of the source
c) Migrate from Source to Target with the Import External Data Tool:
-- in the 'map' dialogue uncheck the current PK column (if there is any)
-- use 'advanced' setting like attached screenshot (the Import External Data Tool will REPLACE INTO)
4) ALTER TABLE target: drop the 'intermediate multi-column PK', create the new ID-column and define it as a PK!
(Note however that re-organizing or renumbering PK's may cause problems with existing applications, as the PK of a table may be referenced by Foreign Key or a application pointer. That we cannot help! Always backup you data before replacing the original tables with new tables created like described here!)
Categories for this entry
Tags: -
Related entries:
- SQLyog Version History
- The 'remove comment' functionality does not remove all comments.
- What kind of databases does SQLyog support?
- Introduction to the 'SQLyog Job Agent' (SJA)
- What kind of ODBC databases are supported by SQLyog Import External Data Tool?
You can comment this FAQ