Database and the Table inside the database are initially define by means of the statement CREATE.
How about want to delete off the database from the server?

DROP DATABASE is SQL command that use to drop or delete off a database from SQL SERVER.

Among commercial version of SQL, there�s not a lot of variation when it come to DROP DATABASE command.

SQL syntax will be like this:

DROP DATABASE [DATABASE NAME]


EXAMPLE :

We want to drop a database name INTRANET

SQL statement:

DROP DATABASE INTRANET