join the 2 tables and just do counts?
select datepart(yyyy,ContractInitiated) year, count(contractid), sum(employees), sum(hours)
from contracts c, jobs j
where c.contract_id = j.contract_id
group by datepart(yyyy,ContractInitiated)
Paraphrasing, but you get the idea. I only know Oracle, so...