EXIT CASE
Jump to navigation
Jump to search
Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link
The EXIT CASE statement does exit from a CASE in a SELECT [EVERY]CASE block.
Syntax
Description
- Use EXIT CASE to immediately exit from a CASE.
- In SELECT EVERYCASE blocks execution will proceed with the next matching CASE.
- In regular SELECT CASE blocks execution will proceed after END SELECT, i.e. EXIT CASE and EXIT SELECT behave the same way here.
See also