Question 2
Consider the following SQL statements executed in sequence on a table students:
CREATE TABLE students ( roll_no INT PRIMARY KEY, name VARCHAR(50), marks INT);
INSERT INTO students VALUES (1, 'Amit', 80);INSERT INTO students VALUES (2, 'Neha', 90);INSERT INTO students VALUES (3, 'Ravi', 70);
UPDATE studentsSET marks = marks + 10WHERE marks < 85;
DELETE FROM studentsWHERE name = 'Neha';
INSERT INTO students (roll_no, name, marks)VALUES (4, 'Neha', 95);What will be the content of the students table after execution?