select cust_name,order_num from Customers c,Orders o
where c.cust_id=o.cust_id
order by cust_name,order_num;

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

上面那个比较快