How to drop table in SQL Server using command?

Asked 4 years ago 1427 views

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;


Write Your Answer