select avg(p.price) as "all orders average price from US supplier"
from orders o
inner join orderdetails od
on o.orderid = od.orderid
inner join products p
on od.productid = p.productid
inner join suppliers s
on p.supplierid = s.supplierid
where s.country = 'USA';