Multiple choice Write a query to display students details whose STUDENT_ID is 119 OR COURSE_ID is 301. SELECT * FROM STUDENTS WHERE STUDENT_ID = 119 OR COURSE_ID = 301 SELECT ALL FROM STUDENTS WHERE STUDENT_ID = 119 OR COURSE_ID = 301 SELECT STUDENT_ID, MARKS FROM STUDENTS WHERE STUDENT_ID = 119 OR COURSE_ID = 301 SELECT ALL STUDENT_ID FROM STUDENTS WHERE STUDENT_ID = 119 OR COURSE_ID = 301 All of the above Reveal answer Fill a bubble to check yourself C Correct answer Explanation Yes, this is the correct syntax.