The SQL command to Delete or Remove a Database from your environment is DROP and it also has 2 ways to be used
DROP DATABASE starwars
DROP DATABASE IF EXIST starwars
Delete the Database called starwars. If you do get an error you have a problem
Only delete the Database if a Database with that name exist in the environment
Risky
Safe