consider the Student relation

Student (ID, name, age, gender, marks)

Which of the following is an incorrect query for the “Find the name of the students whose marks are not in the range of 0 to 33”?

1
SELECT name FROM Student WHERE marks NOT IN (0 TO 33);
2
SELECT name FROM Student WHERE marks NOT IN (0 AND 33);
3
SELECT name FROM Student WHERE marks NOT BETWEEN (0 TO 33);
4
SELECT name FROM Student WHERE marks NOT BETWEEN (0 AND 33);

Sponsored

hivanix.in

Visit

This quiz is brought to you by hivanix.in

🌐 Web App Development

Quick Navigation