How to drop table in SQL Server using command?

Asked 14-Sep-2021
Viewed 428 times

1 Answer


0

Drop Table in SQL Server :

    DROP command is used in SQL Server for delete a Database or delete a table from Database. The SQL DROP command is used to delete a table from database as like below,

Syntax-     DROP TABLE table_name;

Example :    drop table StudentDetails;