Skip to content

Add BREAK and CONTINUE statements with more reliable WHILE statement #37

@agershun

Description

@agershun

Add statements like:

    SET @a = 1;
    WHILE @a < 10
    BEGIN
        IF @a = 8 BREAK;
        SET @a += 1;
        IF @a = 5 CONTINUE;
        SET @a += 1;
     END;

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions