1.데이터베이스를 강의하는 교수의 코드번호, 이름, 전화번호, 강의실을 조회하라.
select p.pcode, p.pname, p.pphone, c.croom
from professor p, course c, lecture l
where p.pcode=l.lpcode and c.ccode=l.lccode and c.cname='Database';
2.박현주 교수님께서 강의하는 과목명, 강의시수, 그리고 강의실을 조회하라.
select c.cname, c.ctime, c.croom
from lecture l, course c, professor p
where l.lpcode=p.pcode and l.lccode=c.ccode and p.pname='박현주';
학생이 수강신청한 과목에 대해 학생이름, 학생전화번호, 과목이름, 강의시수, 강의실을 조회하라.
단, 조회결과는 학생이름의 오름차순, 과목이름의 내림차순으로 정렬하라.