You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AGMadera edited this page Jun 4, 2015
·
3 revisions
Llenar el campo nombre con 5 caracteres aleatorios.
DECLARE
MI_SUELDO FLOAT;
BEGIN
MI_SUELDO:=100;
FOR I IN 2001..2003 LOOP
INSERT INTO DANCE VALUES (I, DBMS_RANDOM.STRING('A',5), MI_SUELDO);
MI_SUELDO:=MI_SUELDO+5;
END LOOP;
END;
/