select cust_name, sum(item_price*quantity) total_price
from OrderItems as a
join Orders as b
on a.order_num=b.order_num
join Customers as c
on b.cust_id=c.cust_id
group by cust_name
having total_price >=1000
order by total_price