Which of the following command is used to delete a table in SQL? 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