Learn SQL as Beginner using Microsoft SQL Server(MSSql):Part 1

By joyal_easycodelearner | 03 Mar 2026 | Topic: Learn

SQL stands for structured query language ,It is the standard language used to communicate with relational databases.


It is used to

  1. store data
  2. Retrieve data
  3. Update data
  4. Delete data
  5. Manage database structure


Almost every major relational databases uses SQL ,including

  1. Microsoft SQL Server(MsSql)
  2. MySql
  3. PostgreSql
  4. Oracle Database

Even though each system has small differences, the core SQL concepts remain the same.



Types of SQL Commands:

  1. DDL :Data Definition Language
  2. DML :Data Manipulation Language
  3. DQL :Data Query Language
  4. DCL :Data Control Language
  5. TCL :Transaction Control Language

← Back to Topic