| # 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. |