What is the result of the following query?
DELETE FROM student
WHERE marks < (SELECT avg(marks)
FROM student);
- The query deletes all the tuples whose marks are greater than the average marks
- The query deletes all the tuples whose marks are less than the average marks
- The query deletes all the values under the marks attribute which are less than the average
- The query is syntactically wrong and does not execute
(b).The query deletes all the tuples whose marks are less than the average marks
need an explanation for this answer? contact us directly to get an explanation for this answer