题解 | #返回购买价格为 10 美元或以上产品的顾客列表#
返回购买价格为 10 美元或以上产品的顾客列表
https://www.nowcoder.com/practice/827eb2a210c64ccdb8ec28fe4c50c246
```sql
大量sql题型解法传送门: https://github.com/fyupeng/study-notes/blob/main/SQL%E5%88%B7%E9%A2%98/%E7%89%9B%E5%AE%A2SQL%E5%BF%85%E4%BC%9A.md
select cust_id
from OrderItems oi
inner join Orders o
on oi.order_num = o.order_num
where item_price >= 10
```