supplier.sql 193 B

12345678910
  1. create database if not exists ${DB};
  2. use ${DB};
  3. drop table if exists supplier;
  4. create table supplier
  5. stored as ${FILE}
  6. as select * from ${SOURCE}.supplier
  7. cluster by s_nationkey, s_suppkey
  8. ;