When you use UNION operator on two query results, Query optimizer (QO) can use following operators to create a union of two result sets:
Merge (Union)
Concat (Union)
Hash Match (Union)
You can explicitly specify what operator should be used using OPTION() hint:
select OrderID, OrderDate, Ex...