blob: 6b4c3a908b8505f522ced2a1b347558c2e41f4f6 [file] [log] [blame] [view]
# 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.