다음을 통해 공유


SQL1- How to Create Databse in Microsoft SQL server

What is SQL Server?
SQL server is a Software From Microsoft to develop database. A database is a set of records  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:

                https://www.microsoft.com/en-us/server-cloud/products/sql-server/

 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.