Question: oracle sql 11g Time left Display student whose id is equal to that of any students in the majors 124 or 125. a. SELECT full_name,
oracle sql 11g

Time left Display student whose id is equal to that of any students in the majors 124 or 125. a. SELECT full_name, id, major_id FROM students WHERE id= ALL (SELECT id FROM students WHERE major_id in(124, 125)); O b. SELECT full_name, id, major_id FROM students WHERE id= ANY (SELECT id FROM students WHERE major_id in(124, 125)); o C. SELECT full_name, id, major_id FROM students WHERE id= (SELECT id FROM students WHERE major_id in(124,125)); O d. SELECT full_name, id, major_id FROM students WHERE id= (SELECT id FROM students WHERE major_id=124 and major_id=125)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
