Which of the following SQL commands deletes a record of an-04955
Which of the following SQL commands deletes a record of an employee with the employee_id 12345, from atable named PERSON.
This multiple choice question (MCQ) is related to the book/course vu cs403 Database Management Systems. It can also be found in vu cs403 Final Term - Quiz No.2.
Which of the following SQL commands deletes a record of an employee with the employee_id 12345, from atable named PERSON.
DELETE FROM person WHERE employee_id = ‘12345'
DELETE WHERE person FROM employee_id = 12345
DROP FROM person WHERE employee_id = 12345
DELETE WHERE person WHERE employee_id = 12345