Here is my situation. I have a current database (let it be called current_db), current, but its data is incomplete due to a recent crash. Some data has been deleted, and this deletion occurs from 2 years ago until yesterday.
I have a backup copy of this database (let it be called backup_db), from November 2013, whose data was completed before November 2013. Since current_db contains some data for the period from November 2013 to February 2014, I do not want to just abandon it and work with the backup. Therefore, I would like to import current_db into backup_db, ignoring duplicate data.
I used methods for this, but did not find suitable ones. I came across several SELECT queries, but they are all simplistic. My database contains 20 tables, and I really donβt see how I create a huge query to import all of this. Is there another way?
thanks
source share