Define MSSQL

SQL Data Types

SQL Commands

SQL Create Database

SQL Create Table

SQL Insert Into

SQL Select Query

SQL Orderby

SQL Update Command

Truncate Delete Drop

SQL Select Top

SQL Constraints

SQL Alias

SQL Joins

SQL Union, intersect

SQL Select Into

SQL Insert Into Select

SQL Indexes

SQL Alter Table

SQL AutoIncrement

SQL View

SQL Date Functions

SQL NULL Value

SQL Aggregate Functions

SQL Group By

SQL Scalar functions

Stored Procedure

MS-SQL Union

The SQL UNION operator combines the result of two or more SELECT statements.
Select city from person union select city from suppliers order by city
Select city from person union all select city from suppliers order by city

MS-SQL Intersect

The SQL Intersect operator shows only the common data from two tables.
Select city from person intersect select city from suppliers order by city
Select city from person intersect all select city from suppliers order by city