select Customers.cust_name,Orders.order_num
from Orders
right join Customers
on Orders.cust_id = Customers.cust_id
order by cust_name