delete content of a table in mysql code example
Example 1: how to delete a table entry in mysql
DELETE FROM `table_name` [WHERE condition];
Example 2: delete all content in table mysql
TRUNCATE tablename
Example 3: delete table in mysql
delete table query
DROP TABLE
Related