delete data from mysql table code example

Example 1: how to delete a table entry in mysql

DELETE FROM `table_name` [WHERE condition];

Example 2: delete record mysql query

DELETE FROM table_name WHERE condition;
In this statement: First, specify the table from which you delete data.
Second, use a condition to specify which rows to delete in the WHERE clause.

for example:
DELETE FROM customers WHERE id = 1;

Example 3: delete table in mysql

delete table query

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

Example 4: mysql delete rows

DELETE FROM table_name
WHERE condition;