Skip to content

Instantly share code, notes, and snippets.

@544
Created April 15, 2011 07:19
Show Gist options
  • Save 544/921299 to your computer and use it in GitHub Desktop.
Save 544/921299 to your computer and use it in GitHub Desktop.
n行の空の仮想表を生成
-- n行の空の仮想表を生成
SELECT
ROWNUM AS RN
FROM
DUAL CONNECT BY LEVEL <= 10;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment