mysql delete table content code example

Example 1: how to delete a table entry in mysql

DELETE FROM `table_name` [WHERE condition];

Example 2: remove all records from table mysql

/* Will delete all rows from your table. Next insert will take next auto increment id. */
DELETE from tableName;
/* Will delete all rows from your table but it will start from new row with 1. */
TRUNCATE tableName;

Example 3: delete all content in table mysql

TRUNCATE tablename

Example 4: how to delete a table in mysql

DROP TABLE tablename;

Example 5: delete table in mysql

delete table query

DROP TABLE <table name;
e.g. DROP TABLE students;

Tags:

Sql Example