题解 | #商品交易(网易校招笔试真题)#

商品交易(网易校招笔试真题)

https://www.nowcoder.com/practice/f257dfc1b55e42e19eec004aa3cb4174

#思路:
#①先对商品分组聚合求出购买数量,选出20个以上的部分;
#②再跟第一张表连接,选出质量50以下的部分即可。

select id, name, weight, total
from
(select goods_id, sum(count) as total
from trans
group by goods_id
having sum(count)>20) as tb1
left join 
goods as tb2
on tb1.goods_id=tb2.id 
where weight<50
order by id

全部评论

相关推荐

点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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