# select prod_name from Products
# union all
# select cust_name as prod_name from Customers
# order by prod_name ASC;


# select prod_name from Products
# union all
# select cust_name from Customers
# order by 1 ASC;


select prod_name from Products
union all
select cust_name from Customers
order by prod_name ASC;