Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在通过 Cronjob 使我的数据库变得愚蠢。现在我想在恢复备份之前删除数据库的全部内容。
我试图将“--add-drop-database”添加到我的愚蠢命令中,但它没有任何改变。我虽然不能添加“--add-drop-table”,因为在我要恢复备份的数据库中,表比备份文件中的表多。
有人知道解决方案吗?
提前谢谢
只需DROP DATABASE databasename;在导入前使用。
DROP DATABASE databasename;