# sql92语法的内连接使用
select cust_name, order_num
from Customers c,Orders o
where c.cust_id=o.cust_id
order by cust_name;