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.
最近我将magento主题中的一些数据转储到mysql中,我想从mysql数据库中撤消或删除它,并想恢复以前的数据库。
解压缩存档文件后检查 dump.sql 中使用的表。删除在安装主题时创建的表。
要检查创建了哪些表,请检查 dump.sql 中的 create table 语句。之后从其他表中删除不是由您的主题创建的数据。
确保不要删除整个表,使用正确的 where 子句。如果您需要更多帮助,请发布您的 dump.sql。
PS:虽然我不太确定 SO 是否会允许大部分代码,但请尝试一下。