select c.cust_name,o.order_num from Customers c inner join Orders o
on o.cust_id = c.cust_id
order  by c.cust_name,o.order_num