call_center.sql 167 B

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