Skip to content

Instantly share code, notes, and snippets.

@gsampath127
Created October 11, 2019 18:55
Show Gist options
  • Save gsampath127/52093fa752fe6935dad2a966e4b8ba71 to your computer and use it in GitHub Desktop.
Save gsampath127/52093fa752fe6935dad2a966e4b8ba71 to your computer and use it in GitHub Desktop.
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