Skip to content

Instantly share code, notes, and snippets.

@NekoTashi
Last active August 29, 2015 14:06
Show Gist options
  • Save NekoTashi/adef88d0282d4068b645 to your computer and use it in GitHub Desktop.
Save NekoTashi/adef88d0282d4068b645 to your computer and use it in GitHub Desktop.
PL SQL
DECLARE
v_concat varchar2(1000) := '';
BEGIN
FOR i in 1.. 8 LOOP
v_concat := '';
FOR j in i.. 8 LOOP
v_concat := v_concat || ' ' || to_char(i * j);
END LOOP;
dbms_output.put_line(v_concat);
END LOOP;
END;
/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment