Saya pikir Anda hanya ingin agregasi bersyarat, bukan subkueri:
select Max(Counting) as Total, student, stdType,
sum(case when score = '3' then 1 else 0 end) as Score3,
sum(case when score = '4' then 1 else 0 end) as Score4
from #tempBWMSHonors3
group by student, stdType;
Catatan:jika skor adalah angka dan bukan string, maka Anda tidak boleh menggunakan tanda kutip tunggal untuk konstanta.