# 方法1:内连接 select c.cust_name,sum(oi.quantity*oi.item_price)total from Customers c,Orders o,OrderItems oi where c.cust_id=o.cust_id and o.order_num=oi.order_num group by c.cust_name having total>=1000; # 方法2:先筛选后链接 select c.cust_name,cus_total.total from orders o, customers c , (selec...