1. 학생의 시험성적이 높은 순서대로 상위 10%에 해당하는 학생의 학번, 이름, 학년, 성적출력더보기[내 답안] select * from student; select * from exam_01; select * from student s, exam_01 e where s.STUDNO = e.STUDNO; select s.studno, s.name, s.grade, e.total, cume_dist() over(order by e.total) from student s, exam_01 e where s.STUDNO = e.STUDNO; select 학번, 이름, 학년, 성적 from(select s.studno as 학번, s...