Are you

SQL DROP TABLE


The DROP TABLE statement in SQL is used to erase a table's definition as well as all of its contents.

It's critical to understand that once a table is destroyed, all of the data in the table is permanently lost, thus we must exercise extreme caution while using this command.

Syntax:

DROP TABLE "table_name";

Example:

The following SQL command will delete STUDENTS table from our database

DROP TABLE STUDENTS;
Next

Courses