Introduction of MS SQL Server Last Updated : 15 Jul, 2025 Comments Improve Suggest changes 4 Likes Like Report Data is a collection of facts and figures and we have humungous data available to the users via the internet and other sources. To manipulate the data, Structured Query Language (SQL) in short has been introduced years ago. There are different versions of SQL available in the market provided by different organizations. In this article, we shall see the version of SQL provided by Microsoft. Introduction : Microsoft SQL Server or MS SQL Server for short is the query language provided for data definition and manipulation. SQL Server is a Relational Database Management Systems which was developed and marketed by the Microsoft company. SQL and SQL servers are built as two layers where the SQL server is on the top for interacting with the relational databases. MS SQL Server also has T-SQL or Transact-SQL and the main focus of T-SQL is to handle the transactions. As it is a Microsoft's developed system, it worked only on Microsoft's environment until it was made available on Linux platforms in the year 2016. SQL Server is composed of: Database engine, and Relational engine, and Storage engine. These are explained as following below. 1. Database Engine - Database is a collection of various data items on which the user can perform any kind of manipulations. The database engine has a relational engine on which a user can perform queries and it also comes with a storage engine which manages the data files, indexes and procedures. The database engine also creates and executes objects like triggers, views, procedures etc. 2. Relational Engine - Relations are the connections between the two different databases or within the same database. It is stored in the form of a row and column intersection named tables. It manages query processing, memory management, buffer management, threads, and much more. It has another layer named storage engine. 3. Storage Engine - It looks upon the storage of data. It is done using systems like disks and Storage Area Network or SAN. Create Quiz Comment M mangalgiaishwarya2 Follow 4 Improve M mangalgiaishwarya2 Follow 4 Improve Article Tags : SQL DBMS-SQL SQL-Server Explore BasicsWhat is SQL?6 min readSQL Data Types3 min readSQL Operators4 min readSQL Commands | DDL, DQL, DML, DCL and TCL Commands4 min readSQL Database Operations3 min readSQL CREATE TABLE3 min readQueries & OperationsSQL SELECT Query3 min readSQL INSERT INTO Statement4 min readSQL UPDATE Statement3 min readSQL DELETE Statement3 min readSQL - WHERE Clause2 min readAliases in SQL2 min readSQL Joins & FunctionsSQL Joins (Inner, Left, Right and Full Join)4 min readSQL CROSS JOIN1 min readSQL | Date Functions3 min readSQL | String functions6 min readData Constraints & Aggregate FunctionsSQL NOT NULL Constraint2 min readSQL PRIMARY KEY Constraint5 min readSQL Count() Function4 min readSQL SUM() Function2 min readSQL MAX() Function3 min readAVG() Function in SQL2 min readAdvanced SQL TopicsSQL Subquery5 min readWindow Functions in SQL6 min readSQL Stored Procedures7 min readSQL Triggers5 min readSQL Performance Tuning6 min readSQL TRANSACTIONS6 min readDatabase Design & SecurityIntroduction of ER Model9 min readIntroduction to Database Normalization6 min readSQL Injection11 min readSQL Data Encryption5 min readSQL Backup4 min readWhat is Object-Relational Mapping (ORM) in DBMS?7 min read Like