插入子查询结果:
INSERT INTO <表名>[(<属性1> [,<属性2>...)]
INSERT INTO Deptage(Sdept,Average)
SELECT Sdept,AVG(Sage)
FROM Student
GROUP BY Sdept