Created
September 3, 2017 01:12
-
-
Save Trshant/41c08c337123ef61e34d2a4f3e19d407 to your computer and use it in GitHub Desktop.
Simple SQL to get a list of numbers
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
SELECT 1 as 'a' | |
UNION SELECT 2 | |
UNION SELECT 3 | |
UNION SELECT 4 | |
UNION SELECT 5 | |
UNION SELECT 6 | |
UNION SELECT 7 | |
UNION SELECT 8 | |
UNION SELECT 9 | |
UNION SELECT 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment