select cust_id
from Orders
where order_num in(
    select order_num
    from OrderItems
    where item_price >= 10
);