drop table statement in SQL

The DROP TABLE statement is used to drop an existing table in a database.
```
drop table Person;
```