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

oracle sql 11g Time left Display student whose id is equal to

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!