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
FOR i IN mon_type_table.first .. mon_type_table.last LOOP
Dbms_Output.Put_Line(mon_type_table(i)); /* outputs : LO1LO2 */
-- Pour sortir si i est > que 10
EXIT WHEN i > 10
END LOOP;