Add statements like: ``` sql SET @a = 1; WHILE @a < 10 BEGIN IF @a = 8 BREAK; SET @a += 1; IF @a = 5 CONTINUE; SET @a += 1; END; ```