Q. What is abc in the following MySQL statement?
DECLARE abc HANDLER FOR def ghi;
β
Correct Answer: (A)
action
Explanation: This MySQL statement is used to declare a handler. Handlers are used to handle specific events that occur during the execution of a stored procedure or function.