If you want to delete a record from any MySQL table then you can use the delete command. The delete command is very similar to the update command.
delete from table where where_condition;
The delete statement deletes rows from a table.
The table is the table name.
The where clause specifies the conditions that identify which rows to delete.