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.
我试图通过 phpmyadmin 重置我的数据库,但它不起作用,因为关系存在于其他表中。
我处于开发阶段,我想清除我所有的表记录。
实现这一目标的最佳方法是什么?
谢谢你。
删除所有表索引(除了主键),然后截断所有表。
如果表上有外键约束,则首先从子表中删除关系,然后从父表中删除索引
我认为一种解决方案是从 phpMyAdmin 中导出数据库结构(当然您也可以通过控制台/终端执行此操作),然后删除整个数据库,然后从导出的文件中重新创建它。