注意用外连接
select cust_name,order_num
from Orders o
right join Customers c
on o.cust_id = c.cust_id
order by cust_name