风飞飞飞
风飞飞飞
题解
题解 | SQL42#检索每个顾客的名称和所有的订单号(一)#
全部文章
题解
归档
标签
去牛客网
登录
/
注册
题解 | SQL42#检索每个顾客的名称和所有的订单号(一)#
299 浏览
0 回复
2022-03-05
风飞飞飞
+关注
检索每个顾客的名称和所有的订单号(一)
http://www.nowcoder.com/practice/0a876520bd314505b787648e331f5e81
代码
select cust_name,order_num from Customers inner join Orders using(cust_id) order by cust_name
Mysql
举报
收藏
赞
评论加载中...