Solved

Which of the Following SQL Statements Will Delete All the Records

Question 1

Multiple Choice

Which of the following SQL statements will delete all the records from the table Students that have the last name "Sample"?


A) REMOVE FROM Courses WHERE LastName = 'Sample'
B) REMOVE WHERE LastName = 'Sample' FROM Courses
C) DELETE FROM Courses WHERE LastName = 'Sample'
D) DELETE WHERE LastName = 'Sample' FROM Courses
E) None of the above

Correct Answer:

verifed

Verified

Related Questions