When you want to combine data, there are two approaches. You can either choose a union or a join.
A Union operation adds records to existing records to form a combined, larger data set. The added records provide typically the same type of information from a different area, for example, the sales orders of two regions or from two years. The structures of the two sources should be compatible. That means that the columns that are part of the union must have matching data types.
A Join operation attaches columns from a second data set to an existing data set. The added columns provide additional, related information to enrich the original record. For example, your sales order record includes only the product ID and not the product description. In this case you could join the sales order record to the corresponding product master record to capture the product description and add the product description column to the sales order record. Your original record now has an additional column.