jeudi 12 juillet 2018

How to exit from outer IF statement in MYSQL

How to exit from the outer IF statement, and continue the stored procedure

    IF (true) THEN

        //do some work here

        IF (somethingWrong==true) THEN
            //Exit from the outer IF and continue SP
        END IF;
    END IF;

Aucun commentaire:

Enregistrer un commentaire