I didn't try to run, but I think you can get the idea if I have some syntax error:
select
c.cust_nam,
totqty
from
customers c join
(select sum(s.qty_sold) as totqty, cust_id from sales s
where s.sale_dat >= ‘20100101’,
s.sale_dat <= ‘20101231’ group by
cust_id) cnt
c.cust_id = cnt.cust_id,