SELECT v.vend_id, COUNT(p.vend_id) as prod_id
FROM Vendors v left join Products p
on v.vend_id = p.vend_id
group by v.vend_id
order by v.vend_id asc;