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;