Answers for "what does leave do in mysql"

SQL
0

what does leave do in mysql

-- MySQL

-- Leave statement is used to immediately exit the loop. 
[label]: LOOP
    ...
    -- terminate the loop
    IF condition THEN
        LEAVE [label];
    END IF;
    ...
END LOOP;
Posted by: Guest on July-22-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language