I have two tables, SalesLog and ReturnAuthorization. I used this union query to join them
SELECT ALL KIOrder,RANumber, CustID,Items,ScheduledDate,TotalCost
FROM SalesLog
WHERE DateShipped = null
ORDER BY ScheduledDate ASC, KIOrder ASC , CustID ASC
UNION SELECT ALL KIOrder,RANumber...