Multiple choice technology databases

Which statement removes the function?

  1. DROP gen_email_name;

  2. REMOVE gen_email_name;

  3. DELETE gen_email_name;

  4. DROP FUNCTION gen_eamil_name;

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

DROP FUNCTION is the correct syntax to remove a stored function. Option D has correct syntax despite typo 'eamil_name' (question likely meant gen_email_name). DROP alone, REMOVE, and DELETE are incorrect.