Created
July 3, 2015 05:40
-
-
Save anuvrat/c544ec756662d8c58c8b 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
CREATE EXTERNAL TABLE orders ( | |
order_id string, | |
item_id string, | |
quantity int, | |
checkout_price double, | |
address_id string | |
) PARTITIONED BY (orderDate string) | |
ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t' LINES TERMINATED BY '\n' | |
STORED AS TEXTFILE | |
LOCATION '/tables/orders/us'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment