How to drop table in SQL Server using command?

Asked 3 years ago
Viewed 622 times

0

How to drop table in SQL using command?


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;


answered 3 years ago by Ashutosh Kumar Verma

Your Answer