Q:

What will be the result of the following query?

belongs to collection: DBMS - SQL MCQ

0

What will be the result of the following query?

(SELECT studentid
FROM student 
WHERE SECTION = 'c')
EXCEPT
(SELECT studentid
FROM student
WHERE roll <10);

  1. All the values of the studentid for which section is c and roll < 10
  2. All the values of the studentid for which section is c and roll > 10
  3. All the values of the studentid for which section not c and roll < 10
  4. All the values of the studentid for which section not c and roll > 10

All Answers

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

 (b).All the values of the studentid for which section is c and roll > 10

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
Which of the following correctly describes the bet... >>
<< Observe the following query and choose the correct...