Tutorial

Sql Server Tutorials

Home Tutorials Sql Server Tutorials

Create Database and CRUD operation


Create New Database

In Sql server, you have to open new query window and then you can use this query for creating new database

CREATE DATABASE testDatabase;
Translate Page