How to drop a table in SQL Server

Database maintenance often requires deleting unnecessary tables. In SQL Server, we have multiple options to accomplish this task: the DELETE command removes rows from tables, TRUNCATE TABLE clears the table data while preserving its structure, and the DROP TABLE command deletes the table entirely.

This article will delve into the DROP TABLE command in SQL Server, providing insights on how to delete single or multiple tables from the database. Furthermore, it will demonstrate how to ensure the existence of a table before proceeding with its deletion.

DROP TABLE Syntax

The DROP TABLE command in SQL Server effectively removes the entire table from the database, including its structure, all stored data, indexes, triggers, and constraints.

The basic syntax of the DROP TABLE command is:

DROP TABLE table_name;

Where:

table_name is the name of the table to be removed.

By default, this command operates within the current database. However, if your objective is to remove a table from a different database, you must include the database_name parameter in the command:

DROP TABLE [database_name].table_name;
Note
When a table is referenced by a FOREIGN KEY constraint, direct deletion becomes impossible. To address this, you must first delete the referencing table before you can drop the target table successfully.

Moreover, the DROP TABLE command does not delete functions, stored procedures, or views that refer to the table we intend to delete. Hence, you need to ensure that the table's deletion won't impact the functionality. Alternatively, you can choose to delete the relevant stored procedures and views as well if it aligns with your requirements.

How to use DROP TABLE in SQL Server

Let's delve into the process of deleting tables in SQL Server databases using the DROP TABLE command. To illustrate how this command works, we'll use dbForge Studio for SQL Server and execute it against the test databases Sakila.

Drop a single table from the current database

Execute the following query to drop the film_text table from the database:

DROP TABLE film_text;

As you noticed, we are currently connected to the Sakila database. The command will apply to this database by default.

Drop a table from the current database

Drop a single table from the different database

Suppose we need to delete a table from a specific database while working with a different one – the BikeStores database in our case. There's no need to switch between databases; we can easily accomplish the task by specifying the required database name in the command.

DROP TABLE Sakila.dbo.rental_details;
Drop a table in another database

This approach enables us to delete a table in any database on the server instance, regardless of the currently connected database.

Drop multiple tables from the database

When you have to delete multiple tables, there's no need to run the DROP TABLE command individually for each table. Instead, you can include all the target tables in a single command, listing them and separating their names with commas:

DROP TABLE film_category, film_genre, film_text;
Drop multiple database tables with one SQL statement

Drop a temporary table from the database

Temporary (temp) tables in SQL Server hold data that users retrieve from regular database tables and allow working with that data without storing such tables in memory.

By default, the temp tables are automatically deleted when the current session ends or the database connection is terminated. However, there may be situations where you need to delete a temp table before the session ends.

In such cases, the DROP TABLE command is the appropriate solution for deleting the temp table promptly.

In our database, we have the #TempTable temporary table created. Now we can remove this temporary table promptly with the following command:

DROP TABLE #TempTable; 

The #TempTable has been successfully dropped.

Deleting a temporary table from the database

Using the DROP TABLE IF EXISTS clause

If the table we want to delete from the database does not exist as specified, SQL Server will throw an error for the DROP TABLE command.

Error means the table does not exist

One possible approach is to consistently verify the presence of the table intended for deletion within the database. However, this method might not be the most efficient solution. Alternatively, we can employ the IF EXISTS clause in the DROP TABLE command, which offers a more effective way to handle the situation.

The syntax would be as below:

DROP TABLE IF EXISTS table_name; 

This clause verifies the existence of the table in question in the current database. If the table is found, the command proceeds to drop it. However, if the table does not exist, SQL Server simply ignores the command without raising any errors.

Note
The SQL Server DROP TABLE IF EXISTS command is specifically designed for tables and cannot be used with other database objects. Attempting to use IF EXISTS with views, triggers, or stored procedures will result in errors.

Please also be aware that the DROP TABLE IF EXISTS command was introduced in SQL Server 2016 and is not supported in earlier versions.

Let us demonstrate how the SQL Server DROP TABLE IF EXISTS command performs. Assume we want to delete the performers table from the database.

DROP TABLE IF EXISTS performers;
No errors during deleting a non-exiting table

In this example, the IF EXISTS clause checked for the table presence in the database – it was present, and the command dropped that table successfully.

When the target table does not exist in the database, the query will be ignored by SQL Server, and no errors will occur.

DROP TABLE IF EXISTS new.rentals;
DROP TABLE IF EXISTS command - correct

The SQL Server DROP TABLE command is a powerful yet radical method of deleting tables from databases. It completely removes the tables and frees up the occupied memory.

Before executing the DROP TABLE command in SQL Server, it is essential to double-check the tables that are intended to be dropped. Additionally, to safeguard your data, always ensure that you have backed up your database beforehand.

How to apply DROP TABLE in dbForge Studio

In our demonstration, we utilized T-SQL commands using the GUI client, dbForge Studio for SQL Server. However, the Studio provides the flexibility to either execute SQL commands directly against the databases or perform the task visually through the Database Explorer interface. This user-friendly approach simplifies the process of table deletion.

  • 1. Expand the Tables node for the necessary database.
  • 2. Select the table you want to delete.
  • 3. Right-click the table and select Delete from the context menu.
Drop a column using dbForge Studio for SQL Server

The Delete option in this menu operates as the DROP TABLE command, deleting the entire table permanently.

The Database Explorer feature in dbForge Studio for SQL Server offers an additional benefit. It provides a visual means to identify tables that may have references to the table you wish to delete.

  • 1. Expand the specific table mode in the Database Explorer.
  • 2. Check the Depends On folder.
View dependencies between tables in the Database Explorer

This feature allows you to view all tables linked to the target table, making it easy to verify dependencies and eliminate tables or other objects that could hinder the deletion process. Furthermore, dbForge Studio for SQL Server can generate scripts to create or delete multiple objects simultaneously, enabling you to drop all related objects with a single click.

Conclusion

The DROP TABLE command in SQL Server is a crucial tool for managing database objects. We have demonstrated how to use this command through SQL commands and GUI clients. One such powerful GUI client is dbForge Studio for SQL Server, which offers a wide range of functionality to handle all database tasks efficiently in SQL Server. Consequently, utilizing the DROP TABLE query is straightforward, regardless of the approach you choose.

However, it is crucial to be cautious while using this command, as it allows for the quick, convenient, and irreversible deletion of tables along with all their associated data. Understanding the consequences of this action is vital to preserve the database's consistency and integrity.