题解 | #返回购买价格为 10 美元或以上产品的顾客列表#
返回购买价格为 10 美元或以上产品的顾客列表
https://www.nowcoder.com/practice/827eb2a210c64ccdb8ec28fe4c50c246
select od.cust_id from OrderItems om , Orders od where om.item_price>=10 and om.order_num=od.order_num;
返回购买价格为 10 美元或以上产品的顾客列表
https://www.nowcoder.com/practice/827eb2a210c64ccdb8ec28fe4c50c246
select od.cust_id from OrderItems om , Orders od where om.item_price>=10 and om.order_num=od.order_num;
相关推荐