Curriculum
Course: SQL
Login

Curriculum

SQL

SQL References

0/80

MySQL Functions

0/139

SQL Server Functions

0/84

SQL Quick Ref

0/1
Text lesson

TRUNCATE TABLE

DROP TABLE

The DROP TABLE command removes a table from the database.

The provided SQL deletes the table named “Shippers”:

Example

DROP TABLE Shippers;
Note: Exercise caution before deleting a table, as doing so will result in the loss of all information stored in the table!

TRUNCATE TABLE

The TRUNCATE TABLE command removes all data inside a table while preserving the table structure.

The following SQL truncates the table named “Categories”:

Example

TRUNCATE TABLE Categories;