First page Back Continue Last page Image

Deleting a Database Instance

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