delete from tables code example
Example 1: delete table sql
DROP TABLE table_name;
Example 2: how to delete a table data in sql
DELETE FROM table_name; //will delete the table data without affecting the table structue
DROP TABLE table_name;
DELETE FROM table_name; //will delete the table data without affecting the table structue