建表初体验
use myhive;
create table stu(id int,name string);
insert into stu values (1,"zhangsan");
select * from stu;
Hive建表时候的字段类型 字段类型
创建表并指定字段之间的分隔符
create table
if not exists stu2(id int ,name string)
row format delimited fields terminated by '\t'
根据查询结果创建表
# 通过复制表结构和表内容创建新表
create table stu3 as select * from stu2;
根据已经存在的表结构创建表
create table stu4 like stu2;
查询表的类型
desc formatted stu2;