最佳答案
我正在清理一个又大又乱的数据库。它包含500多个表,这是 Magento Enterprise 和 Joomla 在一个数据库中结合的结果。
更糟糕的是,有一组70多个 Joomla 表根本没有被使用。这些都是以 bak_
为前缀的。
Just deleting these bak_
tables will be easy, but I want to 'bak' them up first (see what I did there?). In my mind I can picture a command like this:
mysqldump -u username -p mydatabase bak_*
但是这样不行,最好的办法是什么? 谢谢!
编辑: 是的,我可以明确地列出要包含的70个表,或者要排除的 ~ 430个表,但是如果可能的话,我正在寻找一种更好的方法来做到这一点。