union all 取的是并集。
select prod_name
from Products
union all
select cust_name
from Customers
order by prod_name;