---
title: "How to drop table in SQL Server using command?"  
description: "How to drop table in SQL Server using command?"  
author: "Ethan Karla"  
published: 2021-09-14  
canonical: https://answers.mindstick.com/qa/93949/how-to-drop-table-in-sql-server-using-command  
category: "database"  
tags: ["database", "database management system"]  
reading_time: 1 minute  

---

# How to drop table in SQL Server using command?

How to [drop](https://yourviews.mindstick.com/view/84030/how-to-investigate-a-sudden-drop-in-organic-traffic) [table in SQL](https://www.mindstick.com/forum/158046/what-is-the-difference-between-a-temp-table-and-a-variable-table-in-sql-server) using [command](https://www.mindstick.com/blog/178/synchronous-and-asynchronous-command-execution-in-c-sharp-dot-net)?

## Answers

### Answer by Ashutosh Kumar Verma

**[Drop Table](https://answers.mindstick.com/qa/116599/what-is-difference-between-delete-table-data-vs-drop-table) in [SQL](https://www.mindstick.com/articles/202/the-detailed-concept-of-stored-procedure-in-sql-server) 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;

\


---

Original Source: https://answers.mindstick.com/qa/93949/how-to-drop-table-in-sql-server-using-command

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
