题解 | #将两个 SELECT 语句结合起来(一)#
将两个 SELECT 语句结合起来(一)
https://www.nowcoder.com/practice/a33d5c0ebf434e00b22e2977a5aa3a90
(select prod_id,quantity from OrderItems where prod_id like 'BNBG%' ) union ( select prod_id,quantity from OrderItems where quantity = 100 ) order by prod_id;
这里要使用的连接词应该是union.
join 是两张表做交连后,on条件相同的部分产生一个记录集。
union是产生的两个记录集(字段一样)并在一起,成为一个新的记录集。