select
count(*) 
from 
(
	select
	t1.sId
	from Student t1
	join SC t2
	on t1.sId = t2.sId
	group by 1
	having avg(t2.score) > 60
) a