Forked from EngineerLabShimazu/amazon_athena_create_table.ddl
Created
June 14, 2022 16:46
-
-
Save cvargas-xbrein/9bcdcf6a60e5ce6b2e1d24173837ba82 to your computer and use it in GitHub Desktop.
Create a table in Athena from a csv file with header stored in S3.
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
CREATE EXTERNAL TABLE IF NOT EXISTS default.table | |
( | |
`id` int, | |
`name` string, | |
`timestamp` string, | |
`is_debug` boolean | |
) | |
ROW FORMAT SERDE 'org.apache.hadoop.hive.serde2.OpenCSVSerde' | |
WITH SERDEPROPERTIES ( | |
'escapeChar'='\\', | |
'quoteChar'='\"', | |
'serialization.format' = ',', | |
'field.delim' = ',' | |
) | |
LOCATION 's3://your-bucket-name-xxxxx/your/folder' | |
TBLPROPERTIES ( | |
'skip.header.line.count'='1' | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment