select avg(degree) from (select * from score where cno like ‘3%’) as total group by cno having count(*)>5
select AVG(DEGREE) from SCORE where CNO like ‘3%’ group by CNO having COUNT(*)>5
select avg(degree) from (select * from score where cno like ‘3%’) as total group by cno having count(*)>5
select AVG(DEGREE) from SCORE where CNO like ‘3%’ group by CNO having COUNT(*)>5