Skip to content

Instantly share code, notes, and snippets.

@anuvrat
Created July 3, 2015 05:40
Show Gist options
  • Save anuvrat/c544ec756662d8c58c8b to your computer and use it in GitHub Desktop.
Save anuvrat/c544ec756662d8c58c8b to your computer and use it in GitHub Desktop.
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