adplus-dvertising
frame-decoration

Question

What is the result of the following query?
SELECT studname
FROM college
WHERE marks > SOME (SELECT marks
                                        FROM student
                     WHERE SECTION = 'c');

a.

The query gives all the studnames for which marks are greater than all the students in section c

b.

The query gives all the studnames for which the marks are greater than at least on student in section c

c.

The query gives all the studnames for which the marks are less than all the students in section c

d.

The query is syntactically incorrect

Posted under SQL DBMS

Answer: (b).The query gives all the studnames for which the marks are greater than at least on student in section c

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the result of the following query?