A union clause is allowed within a derived-table expression.
select * from (select stor_id, ord_num from sales union select stor_id, ord_num from sales_east) dt_sales_info
The union of two select operations defines the SQL-derived table dt_sales_info.