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.
我有很多db,现在我需要删除一些表,其中有很多数据,大约数百万,但是如果我使用sql语法,phpmyadmin界面或删除表删除,刷新后我仍然有一些数据。如何删除清除表中的所有数据?
确保擦除表的最简单方法是使用该TRUNCATE TABLE table_name语句。如果之后表中仍有数据,则意味着某些东西正在不断地向表中添加数据。
TRUNCATE TABLE table_name