Last active
January 15, 2021 11:41
-
-
Save simonthompson99/bf87afee3a3dbe6f9a4adcf66b0e75b9 to your computer and use it in GitHub Desktop.
[Include table of values in query] Specify table of values in query #sql #database
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 * FROM (VALUES (1, 'one'), (2, 'two'), (3, 'three')) AS t (num,letter); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment