请在sql中帮助我进行此查询:
使用EXISTS,列出哪些商品的销售数量(按num_ordered)为10个或更多。所需的图像如下:
https://i.stack.imgur.com/P89NK.png
https://i.stack.imgur.com/eRorV.png
非常感谢!:)
答案 0 :(得分:0)
select * from item item
where exists
(select 1 from order_line order_line
where order_line.item_num = item.item_num
and order_line.num_ordered > 10)
请尝试这个。