select cust_name,order_num
from Customers 
inner join Orders on Customers.cust_id = Orders.cust_id
#group by cust_name
order by cust_name,order_num