利用子查询语句查询出某班级学生年龄大于平均年龄的,以下SQL语句正确的是()。
A.select *from 表名where age in (select avg(age)from 表名);
B.select *from 表名where age>(select count(age)from 表名);
C.select *from 表名where age>(select avg(age)from 表名);
D.select *from 表名where avg(age)>(select avg(age)from 表名);