首页 > 其他分享 >HIVE简单操作命令

HIVE简单操作命令

时间:2023-01-09 18:34:24浏览次数:38  
标签:terminated 操作命令 string create HIVE 简单 table id row

beeline
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 ",";

标签:terminated,操作命令,string,create,HIVE,简单,table,id,row
From: https://blog.51cto.com/u_14650780/5998680

相关文章