题解 | #返回顾客名称和相关订单号#
返回顾客名称和相关订单号
http://www.nowcoder.com/practice/7e7bc361db6a4cb6aa35eefccfe75364
SELECT cust_name, order_num FROM Customers c INNER JOIN Orders o ON c.cust_id = o.cust_id ORDER BY cust_name, order_num;
返回顾客名称和相关订单号
http://www.nowcoder.com/practice/7e7bc361db6a4cb6aa35eefccfe75364
SELECT cust_name, order_num FROM Customers c INNER JOIN Orders o ON c.cust_id = o.cust_id ORDER BY cust_name, order_num;
相关推荐