Last active
July 3, 2017 06:04
-
-
Save doryokujin/493c2e636d1fd66924b55745c1aa55f9 to your computer and use it in GitHub Desktop.
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 * FROM (VALUES (1, 'apple'), (2, 'banana')) as fruit(id, name); | |
# このクエリでは, 以下のデータセットがクエリ内で生成され使用されています。 | |
# id | name | |
#-----+-------- | |
# 1 | apple | |
# 2 | banana |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment