Last active
August 21, 2022 05:33
-
-
Save Gatsby-Lee/4af25bdb6134c24f54f4a84f6e89a755 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
-- It's all EXTERNAL TABLE | |
-- default file format: TEXTFILE | |
CREATE TABLE my_db.default_default ( | |
clsuter_id string | |
) | |
LOCATION 's3://aws-athena/my_db/default_default' | |
CREATE TABLE my_db.parquet_default ( | |
clsuter_id string | |
) | |
STORED AS PARQUET | |
LOCATION 's3://aws-athena/my_db/parquet_default' | |
CREATE TABLE my_db.orc_default ( | |
clsuter_id string | |
) | |
STORED AS ORC | |
LOCATION 's3://aws-athena/my_db/orc_default' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment