1
0

ship_mode.sql 536 B

123456789101112131415
  1. create database if not exists ${DB};
  2. use ${DB};
  3. drop table if exists ship_mode;
  4. create external table ship_mode(
  5. sm_ship_mode_sk int
  6. , sm_ship_mode_id string
  7. , sm_type string
  8. , sm_code string
  9. , sm_carrier string
  10. , sm_contract string
  11. )
  12. row format delimited fields terminated by '|'
  13. location '${LOCATION}';