A database is a storage location where we can store our business data. The database uses tables to store our information in a normalized way. So by creating a database in SQL Server, We can easily Select, Update and Delete the business data.
Let us see how to Create a Database in SQL Server, Rename, and Delete DB with an example of each.
How to Create Database in SQL Server Example
Before we start creating a new database, Let us see the list of available ones. The list of available DBS in the current instance is.

The syntax for creating a Database is:
CREATE DATABASE DName
In this example, we create a new one called New_Database. So, Replace the DName with New_Database in the Server query window.
CREATE DATABASE New_Database;
Click on the Execute button to execute the command.
The Command is executed successfully, and you can see the New_Database in our object explorer. If you didn’t find the newly created database in SQL Server Object Explorer, Please click on the refresh button.

Let us see, what will happen, When we execute the same Create Database command again. It is throwing an error saying: New_database already exists. Choose a different name.

How to Check whether Database name exists or not
In an organization, we may or may not have the privilege of knowing the available databases. So, it is always advisable to check whether the name already exists or not. This can be done in two ways:
The following statement will only execute Create Database Statement if the New_database is not available in the system.
IF NOT EXISTS ( SELECT name FROM master.dbo.sysdatabases WHERE name = N'New_Database' ) CREATE DATABASE [New_Database]
We just replaced the If Not Exists with If Exists and added a select statement to display the message. The steps involved in the Following statement are:
- The Select Statement will check for the DB name New_database in the system.
- If the New_database already exists, then the following query will display a message saying DB already exists.
- If the DB does not exist, then only the following else block code will be executed. It means the SQL Server Create database command only executes if the New_database is not available in a system DB
IF EXISTS ( SELECT name FROM master.dbo.sysdatabases WHERE name = N'New_Database' ) BEGIN SELECT 'Database Name already Exist' AS Message END ELSE BEGIN CREATE DATABASE [New_Database] SELECT 'New DB is Stored' END

How to Create Database in SQL Server Management Studio
In order to create a new database, first, open the Management Studio. Right-click on the below-shown folder and select the New .. option from the context menu.

Once you select the option, the following window will be opened. Here we left Owner as default and DB name as New_database as shown below. Click OK to create a new database.

Let us see what will happen When we create a DB with an existing name. As you can observe that it is throwing an error

How to Delete Database in SQL Server
To Delete a database, we can simply use the following syntax, and the syntax for Drop is:
DROP DATABASE [DName]
In this example, we are going to delete New_Database. So, you have to replace the [DName] with the required name. Therefore, within the query window, Please write the following Drop Database query.
Let us see, What will happen when we execute the same Drop command once again:

The above screenshot shows that it is throwing an error saying: It doesn’t exist.
A better approach is to check whether the name exists or not. Because sometimes, your colleagues or team leader may delete the DB you are trying to delete.
IF EXISTS ( SELECT name FROM master.dbo.sysdatabases WHERE name = N'New_Database' ) DROP DATABASE [New_Database]
Messages
-------
Command(s) completed successfully.
The select statement inside the If exists block will check whether the DB name New_database is in the system. If True (DB exists), then only the next DROP statement will execute. Otherwise, it will skip and will not perform the drop.
How to Rename Database?
To rename the database in the SQL server, we can simply use the system stored procedure sp_renamed, and the syntax is:
SP_RENAMEDB [Old Name],[New Name]
In this example, we rename New_Dt with New_Db. So, within the query window, Please write the following query.
SP_RENAMEDB [New_Dt],[New_Db]
Messages
-------
The name 'New_Db' has been set.