customer.sql 184 B

12345678910
  1. create database if not exists ${DB};
  2. use ${DB};
  3. drop table if exists customer;
  4. create table customer
  5. stored as ${FILE}
  6. as select * from ${SOURCE}.customer
  7. CLUSTER BY c_customer_sk
  8. ;