Friday, October 28, 2022

How to create Database In Microsoft SQL SERVER

 The SQL CREATE DATABASE statement is used to create a new SQL database.

Syntax

The basic syntax of this CREATE DATABASE statement is as follows −

CREATE DATABASE DatabaseName;

Always the database name should be unique within the RDBMS.

Example

If you want to create a new database <testDB>, then the CREATE DATABASE statement would be as shown below −

 CREATE DATABASE testDB ;

Video:- How to create a Database


No comments:

Post a Comment

how to create SSRS report using parameter in visual studio.

Step 1 :- Open the visual studio and create a new project. Step 2 :- Click on Project and search for the template REPORT SERVER PROJECT. Ste...