EXIT SELECT
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 SELECT statement does exit from a SELECT EVERYCASE block, doesn't matter which CASE is currently executed.
Syntax
Description
- Use EXIT SELECT to immediately exit an entire SELECT EVERYCASE block.
- Execution will proceed after END SELECT.
- If you just wanna exit from a certain CASE while still checking for further CASE matches, then use EXIT CASE instead.
See also