PROCEDURE display_table (table_in IN , -- Placeholder for real table type. number_of_rows_in IN INTEGER) IS BEGIN /* For each row in the table ... */ FOR table_row IN 1 .. number_of_rows_in LOOP /* Display the message, including the row number */ DBMS_OUTPUT.PUT_LINE ('Value in row ' || TO_CHAR (table_row) || ': ' || table_in (table_row)); END LOOP; END;