Created
March 14, 2019 01:39
-
-
Save myui/16d2968427bd6f355b1b73ff91e609d7 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
SELECT | |
from_json(to_json( | |
ARRAY( | |
NAMED_STRUCT("country", "japan", "city", "tokyo"), | |
NAMED_STRUCT("country", "japan", "city", "osaka") | |
) | |
),'array<struct<city:string>>'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment