题解 | #返回顾客名称和相关订单号#

返回顾客名称和相关订单号

https://www.nowcoder.com/practice/7e7bc361db6a4cb6aa35eefccfe75364

# #INNER JOIN 写法
# select a.cust_name,
# b.order_num 
# from Customers a
# inner join Orders b
# on a.cust_id = b.cust_id
# order by a.cust_name asc;

#简单的等联结语法
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;

#SQL练习#
全部评论

相关推荐

快刀斩offer:干测试,项目组就我一个测试,准备在职考研跑路了
点赞 评论 收藏
分享
02-11 14:29
已编辑
字节跳动_QA
Edgestr:这种的写代码最狠了
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务