Computer Science - Database Systems - SQL - INSERT, UPDATE, DELETE - Data Modification Queries
P1: 'Add new student' → INSERT ___ students (name, age, grade) VALUES ('Eve', 14, 9) [INTO]. P2: 'Update Alice's score to 98' → UPDATE students SET score = ___ WHERE name = '___' [98, Alice]. P3: 'Delete all students with score below 40' → ___ FROM students WHERE score < ___ [DELETE, 40]. P4: 'Incre