SQL> create view score_view(stid, cnt, tot, avg)
2 as
3 select S.stid, count(ST.subid), sum(ST.score), avg(ST.score)
4 from student S, st_schedule ST
5 where S.stid = ST.stid group by S.stid;
View created
해서 뷰를 만들었는데요 ...
student 테이블에 학생은 이름이 있는데 ...
학생의 학번(id), 학생의 이름(student.hname),평균을 뷰를 사용하지 않고
뽑아낼 순 없나요 ?
알고싶습니다.
|