delete a table item in sql using mysql code example
Example 1: mysql delete entire row on condition
DELETE FROM table_name [WHERE Clause]
Example 2: how to delete all the rows in a table without deleting the table in mysql
delete from tableName;