Created
April 17, 2019 16:33
-
-
Save mujahidk/db5ee59b445cda6339079de18498105c to your computer and use it in GitHub Desktop.
Oracle generate rows of serial numbers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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