beeline标签:terminated,操作命令,string,create,HIVE,简单,table,id,row From: https://blog.51cto.com/u_14650780/5998680
beeline> !connect jdbc:hive2://192.168.2.2:10000
hdfs
回车回车
直接用默认表,不需要配置权限
create table st(id int,name string) row format delimited fields terminated by ",";
insert into st(id,name) values(1,'萨达')
create table cloudalarm(level string,source string,location string,device string,symptom string) row format delimited fields terminated by ",";