Ejemplo 1: mysql else if
IF condition1 THEN
statements;
ELSEIF condition2 THEN # OPTIONAL
statements;
ELSE # OPTIONAL
statements;
END IF;
Ejemplo 2: mysql if else
IF condition THEN
statements;
ELSE
else-statements;
END IF;
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)