| 123456789101112131415 |
- create database if not exists ${DB};
- use ${DB};
- drop table if exists household_demographics;
- create external table household_demographics
- (
- hd_demo_sk int,
- hd_income_band_sk int,
- hd_buy_potential string,
- hd_dep_count int,
- hd_vehicle_count int
- )
- row format delimited fields terminated by '|'
- location '${LOCATION}';
|