SQL Union Operator
The UNION Operator is used to combine the result set of two or more SELECT Statement. This operator is useful if you have two table that share the same column name and data type and you want to combine it in a single Query.
Take note that both table must have the same column name and data type.