1. 建内表t1
create table t1(a int, b string);
2. 没有表t1时才创建t1
create table if not exists t1(a int, b string);
3. 创建表,指定字段分隔符为','
create table if not exists t1(a int, b string) row format delimited fields terminated by ',';
by参数后面可以跟自己想要的分隔符,并使用引号。