Skip to content

Instantly share code, notes, and snippets.

@gbarreiro
Last active September 1, 2020 06:16
Show Gist options
  • Save gbarreiro/cafaf66fcef8c0d4f72026b6f05f75dd to your computer and use it in GitHub Desktop.
Save gbarreiro/cafaf66fcef8c0d4f72026b6f05f75dd to your computer and use it in GitHub Desktop.
MySQL cheatsheet: flow control
-- if-else
IF boolean_condition THEN
-- ... instructions ...
[ELSEIF boolean_condition THEN]
-- ... instructions ...
ELSE
-- ... instructions ...
END IF
-- normal loop
LOOP
-- ... instructions ...
LEAVE; -- it's really important to leave the loop, if not, it'll run forever
END LOOP;
-- while loop
WHILE boolean_condition DO
-- ... instructions ...
END WHILE;
-- do-while loop
REPEAT
-- ... instructions ...
UNTIL boolean_condition;
END REPEAT;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment