blob: 2284fe14792d8c7ba1b1a65b7003aea8706d5a22 [file] [view]
---
title: "DROP TABLE"
---
## Basic syntax
Basic syntax:
```sql
DROP TABLE [IF EXISTS] table_name
```
`Drop Table` removes a specific table. This statement should be used with caution, because it removes both the table definition and table data, and this removal is not recoverable.