delete data from a table in mysql code example
Example 1: how to delete a table in mysql
DROP TABLE tablename;
Example 2: delete table in mysql
delete table query
DROP TABLE <table name;
e.g. DROP TABLE students;
Example 3: how to delete table in mysql
DROP table table_name;
Example 4: mysql delete rows
DELETE FROM table_name
WHERE condition;