Multiple choice technology databases Which statement removes the function? DROP gen_email_name; REMOVE gen_email_name; DELETE gen_email_name; 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.