I have database named "Testing". Now I have to do restore data from new dump file which is having Old + New data to "Testing" database. I want to restore only New data to database (without duplicating old data ) .
Tried taking backup of a portion of table and then restoring it ( How to use mysqldump for a portion of a table?), But it did't work out because No column like ID is in my table (primary Key for row count )
My table structure is like this ,
A | B | C | D | E |
+---------------+------------+---------+-------+---------+
| 1432550740000 | 111004 | 10000 | 2 | 9690001 |
| 1432550790000 | 123001 | 10000 | 2 | 9690001 |
| 1432550340000 | 44440215 | 10000 | 2 | 9690001 |
| 1432550450000 | 125400054 | 10000 | 2 | 9690001 |
| 1432551444000 | 43459067 | 10000 | 2 | 9690001 |
+---------------+------------+---------+-------+---------+
Can anyone please guide me with this ?