题解 | #检索每个顾客的名称和所有的订单号(二)#
检索每个顾客的名称和所有的订单号(二)
https://www.nowcoder.com/practice/4e73c4e770b941c9abc60814601ed498
select t1.cust_name, t2.order_num from Customers t1 left join Orders t2 on t1.cust_id = t2.cust_id order by t1.cust_name asc
左连接 以 左表作为主表,查询出左表的全部数据,从表查询出与主表匹配的行,没有匹配的行将显示null值
右连接 以 右表作为主表,查询出右表的全部数据,从表查询出与主表匹配的行,没有匹配的行将显示null值
主表 left join 从表 on 关联条件
从表 left join 主表 on 关联条件