How do I export a database but export the tables based on their date created? B/C I’m facing this issue where when exporting this database, since some of the tables have foreign keys and linked to other tables by their keys, how do I export to overcome that issue?
Share
If you want to export the tables of a database in order by date created you can use SQLyog Scheduled backup, where you have:
There is also an option to SET foreign_key_checks = 0; while taking backup so that you don’t run into any foreign key related issues 😉