What will be the result of the following query?
(SELECT studentid
FROM student
WHERE SECTION = 'c')
EXCEPT
(SELECT studentid
FROM student
WHERE roll <10);
- All the values of the studentid for which section is c and roll < 10
- All the values of the studentid for which section is c and roll > 10
- All the values of the studentid for which section not c and roll < 10
- All the values of the studentid for which section not c and roll > 10
(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