Preview:
DECLARE
  n number := 0;
  cursor c_data is
    SELECT coloumn FROM table; -- Your query here
BEGIN
  FOR data_row IN c_data LOOP
    n := n + 1;
    DBMS_OUTPUT.PUT_LINE('Row ' || n || ': ' || data_row.column_name);
  END LOOP;
END;
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter