题解 | #检索每个顾客的名称和所有的订单号(一)#
检索每个顾客的名称和所有的订单号(一)
http://www.nowcoder.com/practice/0a876520bd314505b787648e331f5e81
select a.cust_name , b.order_num
from Customers a, Orders b
where a.cust_id = b.cust_id
order by a.cust_name asc
检索每个顾客的名称和所有的订单号(一)
http://www.nowcoder.com/practice/0a876520bd314505b787648e331f5e81
select a.cust_name , b.order_num
from Customers a, Orders b
where a.cust_id = b.cust_id
order by a.cust_name asc
相关推荐