Deleting Table With Query in MS SQL

The following method is used to delete (drop) a table by writing a query in MS SQL.

DROP TABLE {Table Name}

You have to be careful when using this type of query! Because by running this query, everything including the definition of the table, all data, indexes, triggers and constraints will be removed.

An example of usage is as follows..

DROP TABLE TBL_PERSON_INFO


You May Interest

What are the Different Recovery Models Inside SQL Server ?

What is an Online Rebuilding of Indexes in SQL Server ?

How to Restart SQL Server in Single-User Mode ?

What are Wait Types in SQL Server ?

How is Auditing Different From Change Data Capture in SQL Server?