What is the result of the following query?
SELECT studname
FROM college
WHERE marks > SOME (SELECT marks
FROM student
WHERE SECTION = 'c');
- The query gives all the studnames for which marks are greater than all the students in section c
- The query gives all the studnames for which the marks are greater than at least on student in section c
- The query gives all the studnames for which the marks are less than all the students in section c
- The query is syntactically incorrect
(b).The query gives all the studnames for which the marks are greater than at least on student in section c
need an explanation for this answer? contact us directly to get an explanation for this answer