drop database statement in SQL

The DROP DATABASE statement is used to drop an existing SQL database.
```
drop database World;
```