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.
这似乎是一个简单的问题,答案很简单。
我只想创建一种从 PHP 页面清除表的方法,同时仍保留删除将创建的空列。
我试图查一下,但一切似乎都过于复杂了。我不想使用 Java 或任何其他语言。只有 PHP。
如果重置意味着从表中删除所有数据,则可以使用 Truncate table_name:
mysql_query("TRUNCATE table_name");