What is DATABASE?
Database :-The database is collection of Tables, Stored procedures, trigger, cursors. Each talbes, Stored procedures, trigger, cursors has identity name.
How to create Database in SQL SERVER:-We open SQL SERVER and follow this step:-
Step 1:-First of all we connect SQL SERVER as shown below:-
Step 2:-Now, Go to--->Top Left Side--->Click on ---->New Query and write the following code for creating Database
Syntax:- CREATE DATABASE database_Name
Example:- CREATE DATABASE dbSantoshTest
Now, select query and run.
How to create Database in SQL SERVER:-We open SQL SERVER and follow this step:-
Step 1:-First of all we connect SQL SERVER as shown below:-
Syntax:- CREATE DATABASE database_Name
Example:- CREATE DATABASE dbSantoshTest
Now, select query and run.