如何根据表日期导出MySQL表?

发布于 2024-12-04 04:09:46 字数 84 浏览 4 评论 0原文

如何导出数据库但根据创建日期导出表? B/C 我面临这个问题,在导出此数据库时,由于某些表具有外键并通过它们的键链接到其他表,我该如何导出来克服这个问题?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最舍不得你 2024-12-11 04:09:46

如果您想按创建日期的顺序导出数据库的表,您可以使用 SQLyog 计划备份,您可以在其中使用:

  • 将时间戳添加到备份文件名的选项
  • 备份整个数据库或仅备份单个表的选项
  • 备份到单个文件或将备份拆分为多个文件的
  • 选项存储的选项单个文件夹或一个文件夹中的备份文件'文件夹树'

还有一个选项 SETforeign_key_checks = 0;在进行备份时,这样您就不会遇到任何与外键相关的问题;-)

If you want to export the tables of a database in order by date created you can use SQLyog Scheduled backup, where you have:

  • An option to add a TIMESTAMP to the backup file name
  • An option to backup a complete database or only individual tables
  • An option to backup to a single file or to split the backup into more files
  • An option to store the backup files in a single folder or a 'folder tree'

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 ;-)

不知所踪 2024-12-11 04:09:46

实际上,我认为您想要的是在插入行时向导入文件添加几行:

SET foreign_key_checks = 0;
-- insert rows
SET foreign_key_checks = 1;

这样插入可以按任何顺序发生。

Actually, I think what you want is to add a couple of lines to the import file when inserting rows:

SET foreign_key_checks = 0;
-- insert rows
SET foreign_key_checks = 1;

This way the inserts can occur in any order.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文