SELECT cust_name, order_num
FROM Orders  right join Customers 
on Orders.cust_id = Customers.cust_id
order by cust_name