Programacione en oracle

¿como se utilizan los sig. Ciclos:
if then else
for
do while
if anidado

1 respuesta

Respuesta
1
--este es el if
if condicion then
-- Ejecucion
else
-- ejecucción
if (condicion) then
end if
end if;
--ejemplo de for
FOR ctr IN 1..10 LOOP
IF NOT finished THEN
INSERT INTO ... VALUES (ctr, ...); -- legal
factor := ctr * 2; -- legal
ELSE
ctr := 10; -- illegal
END IF;
END LOOP;

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas