Q:

What is the result of the following query?

belongs to collection: DBMS - SQL MCQ

0

What is the result of the following query?

SELECT studname
FROM college
WHERE marks > SOME (SELECT marks
                                        FROM student
                     WHERE SECTION = 'c');

  1. The query gives all the studnames for which marks are greater than all the students in section c
  2. The query gives all the studnames for which the marks are greater than at least on student in section c
  3. The query gives all the studnames for which the marks are less than all the students in section c
  4. The query is syntactically incorrect

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

 (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

total answers (1)

DBMS - SQL MCQ

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
The ________ comparison checker is used to check ... >>
<< State true or false : Nested Subqueries cannot be ...