SQL DROP TABLE

The DROP TABLE statement in SQL is used to delete an entire table, including all its data and structure, from the database.

 

Key Features of SQL DROP TABLE

  • Permanently removes the table and its data.
  • Cannot be undone unless a backup exists.
  • Drops indexes, constraints, and relationships associated with the table.

 

SQL DROP TABLE Syntax

DROP TABLE table_name;

 

Example: Dropping a Table

DROP TABLE Employees;
  • Deletes the Employees table and all its data from the database.

 

Example: Dropping a Table If It Exists (Safe Drop)

DROP TABLE IF EXISTS Employees;
  • Drops the Employees table only if it exists, preventing errors.

 

Example: Dropping Multiple Tables (Some Databases Support This)

DROP TABLE Orders, Customers;
  • Deletes both Orders and Customers tables.

 

Summary

  • DROP TABLE permanently removes a table from the database.
  • IF EXISTS prevents errors if the table does not exist.
  • All data, constraints, and relationships related to the table are lost.
  • Always ensure a backup before using this command.