-
What is abc in the following statement?
DECLARE abc HANDLER FOR def ghi;
-
- statement
- action
- null
- condition value
- None of these
Correct Option: B
The ‘DECLARE HANDLER’ statement is used to declare a handler. When a condition whose value matches def, MySQL will execute ghi and either continue or exit the current code block.