DDL is short name of Data Definition Language, which deals with database schemas and descriptions, of how the data should reside in the database.
* **CREATE** – to create database and its objects like (table, index, views, store procedure, function and triggers).
* **ALTER** – alters the structure of the existing database.
* **DROP** – delete objects from the database.
* **TRUNCATE** – remove all records from a table; also, all spaces allocated for the records are removed.
* **COMMENT** – add comments to the data dictionary.
* **RENAME** – rename an object.
### DML
DML is short name of Data Manipulation Language which deals with data manipulation, and includes most common SQL statements such SELECT, INSERT, UPDATE, DELETE etc, and it is used to store, modify, retrieve, delete and update data in database.
* **SELECT** – retrieve data from one or more tables.
* **INSERT** – insert data into a table.
* **UPDATE** – updates existing data within a table.
* **DELETE** – delete all records from a table.
* **MERGE** – UPSERT operation (insert or update)
* **CALL** – call a PL/SQL or Java subprogram.
* **EXPLAIN PLAN** – interpretation of the data access path.
* **LOCK TABLE** – concurrency control.
### DCL
DCL is short name of Data Control Language which includes commands such as GRANT, and mostly concerned with rights, permissions and other controls of the database system.
* **GRANT** – allow users access privileges to database.
* **REVOKE** – withdraw users access privileges given by using the GRANT command.
### TCL
TCL is short name of Transaction Control Language which deals with transaction within a database.
* **COMMIT** – commits a transaction.
* **ROLLBACK** – rollback a transaction in case of any error occurs.
* **SAVEPOINT** – a point inside a transaction that allows rollback state to what it was at the time of the savepoint.
* **SET TRANSACTION** – specify characteristics for the transaction.
Join is the widely-used clause in the SQL Server essentially to combine and retrieve data from two or more tables. In a real-world relational database, data is structured in many tables and which is why, there is a constant need to join these multiple tables based on logical relationships between them.
### Inner join
Inner Join clause in SQL Server creates a new table (not physical) by combining rows that have matching values in two or more tables. This join is based on a logical relationship (or a common field) between the tables and is used to retrieve data that appears in both tables.
Assume, we have two tables, Table A and Table B, that we would like to join using SQL Inner Join. The result of this join will be a new result set that returns matching rows in both these tables. The intersection part in black below shows the data retrieved using Inner Join.