# 查询购买价格>=10的订单
select order_num
from OrderItems
where item_price>=10
# 查询该订单的顾客号
select cust_id
from Orders
where order_num in(
    select order_num
    from OrderItems
    where item_price>=10
);