SQL1- How to Create Database In Microsoft SQL server

What is SQL Server?

SQL server is a Software From Microsoft to develop database. A database is a set of record which we store using SQL server tools and techniques. SQL server is a database management system.

What is SQL?


SQL Stands for "Structure Query Language", is a programming language to store and manage database records. By writing SQL Queries we usually can perform four core "CRUD" operation, Which are:
  • Create: To create the database.
  • Read: To retrieve the records from database.
  • Update: To update the data in database.
  • Delete: To delete the data from database.
SQL is very easy to learn. SQL Queries help to perform "CRUD" operations and other outstanding operations as well.

Before Creating databases, Download SQL Server From Microsoft Official site.You can also download the setup from the following link.

After download and installing SQL server now we are able to work with SQL server and can create the database. In the next tutorial we will create our first database using SQL Server.