Jeśli nie możesz po prostu ograniczyć samego zapytania za pomocą where klauzuli, możesz użyć faktu, że count agregacja liczy tylko wartości inne niż null:
select count(case Position when 'Manager' then 1 else null end)
from ...
Możesz także użyć sum agregować w podobny sposób:
select sum(case Position when 'Manager' then 1 else 0 end)
from ...