Skip to content

Instantly share code, notes, and snippets.

@mujahidk
Created April 17, 2019 16:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mujahidk/db5ee59b445cda6339079de18498105c to your computer and use it in GitHub Desktop.
Save mujahidk/db5ee59b445cda6339079de18498105c to your computer and use it in GitHub Desktop.
Oracle generate rows of serial numbers
SELECT
level
FROM
dual
CONNECT BY 1 = 1 AND level <= 20;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment