H.S.Bhathiya(110059X) edited section_Proposed_Solution_We_propose__.tex  about 8 years ago

Commit id: 2d8ac0e7e9a06ab8c8aa31fb17d0f8234b07d272

deletions | additions      

       

t1 as (SELECT \/\* \+ no_merge \*\/ INSTRUCTOR.ID as Instructor_ID, COURSE.COURSE_ID, COURSE.COURSE_ID as T1_ID   FROM INSTRUCTOR ,TEACHES,COURSE   WHERE TEACHES.COURSE_ID=COURSE.COURSE_ID),  t2 as (SELECT /*+ \/\* \+  no_merge */ \*\/  STUDENT.ID as Student_ID, student.name as Student_Name, COURSE.COURSE_ID, COURSE.COURSE_ID as T2_ID, COURSE.TITLE as TITLE FROM COURSE, TAKES, STUDENT   WHERE TAKES.COURSE_ID = COURSE.COURSE_ID AND STUDENT.ID = TAKES.ID)  SELECT t2.Student_ID, t2.Student_Name, t1.Instructor_ID, t2.TITLE