SQL – How To Drop SQL Table?


SQL – How To Drop SQL Table?

Table Of Content:

  1. What Is Dropping A Table?
  2. Syntax Of Dropping SQL Table.
  3. Examples Of Dropping SQL Table.

(1) What Is Dropping A Table?

  • Dropping a table means, deleting the entire table from the database.
  • Be careful before dropping a table. Deleting a table will result in the loss of complete information stored in the table!

(2) Syntax Of Dropping SQL Table.

DROP TABLE table_name;

(3) Examples Of Dropping SQL Table.

DROP TABLE Shippers;

Leave a Reply

Your email address will not be published. Required fields are marked *