Database Management
primer-original-v2mediumDatabase ManagementSelect Statementprimer-original-v2

Which query will delete all the data in the Employee table that belongs to the employee id 1207?

Answer options

A
DELETE FROM Employee WHERE emp_id = 1207;
B
DROP FROM Employee WHERE emp_id = 1207;
C
TRUNCATE Employee WHERE emp_id = 1207;
D
REMOVE FROM Employee WHERE emp_id = 1207;

Correct answer: DELETE FROM Employee WHERE emp_id = 1207;

Explanation

Quick AnswerThe correct answer is DELETE FROM Employee WHERE emp_id = 1207; because it directly addresses the core logic of Database Management.

This question has been retained as-is due to its unique context.

Related Database Management questions

Practice more Database Management questions

PrimerPrep has independently reviewed practice questions and coding exercises — all free.