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;

京公网安备 11010502036488号