Answers for "what does iterate do in mysql"

SQL
0

what does iterate do in mysql

-- MySQL

-- Iterate statement is used to skip the current loop iteration and
-- start a new iteration
[label]: LOOP
    ...
    -- terminate the loop
    IF condition THEN
        ITERATE [label];
    END IF;
    ...
END LOOP;
Posted by: Guest on July-22-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language