课程表结构如下SC(sno, cno, cname, grade),其中列cno和sno的数据类型均为varchar(20),grade数据类型为smallint,查询课程号cno为'20180010'的学生的平均分,对应的SQL语句可以是( )。 A. select avg(grade) as 平均分 from SC where cno='20180010'; B. select sum(grade) as 平均分 from SC where cno='20180010'; C. select avg(grade) as 平均分 from SC where cno='20180010' group by sno ; D. select AVG(grade) as 平均分 from SC where cno='20180010';