我想創建一個包含一系列要檢查的條件的MySQL存儲過程。在MySQL存儲過程中轉到
IF (a && b) then
IF c =1 then
IF d < e then
check conditions 1,2,3...
END IF
ELSE
check conditions 1,2,3...
END IF
END IF
我想要寫的程序在這樣一種方式,條件1,2,3應寫爲常見,這樣的程序會像
IF (a && b) then
IF c =1 then
IF d < e then
goto label check;
END IF
ELSE
goto label check;
END IF
END IF
label:label check;
check conditions 1,2,3...
由於goto語句中不存在MySQL存儲程序,我該如何編寫程序?