how to delete a entire table in sql code example
Example: how to delete a table data in sql
DELETE FROM table_name; //will delete the table data without affecting the table structue
DELETE FROM table_name; //will delete the table data without affecting the table structue