delete all table in mysql code example
Example 1: clear a table in mysql
truncate tableName
Example 2: how to delete a table entry in mysql
DELETE FROM `table_name` [WHERE condition];
truncate tableName
DELETE FROM `table_name` [WHERE condition];