nation.sql 161 B

12345678
  1. create database if not exists ${DB};
  2. use ${DB};
  3. drop table if exists nation;
  4. create table nation
  5. stored as ${FILE}
  6. as select distinct * from ${SOURCE}.nation;