select prod_name,(
    select sum(quantity) quant_sold from OrderItems b
    where b.prod_id=a.prod_id) 
from Products a;