Created
October 11, 2019 18:55
-
-
Save gsampath127/52093fa752fe6935dad2a966e4b8ba71 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
WITH Result As | |
( | |
SELECT 1 Num | |
UNION ALL | |
SELECT Num+1 FROM Result WHERE Num < 100 | |
) | |
SELECT * FROM Result |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment