首先是将数据导入到HIVE数据库中,我使用的是以下的方法:
将一个csv或txt导入hive:先修改格式为txt
第一行数据为列名,根据列名在hive建表
create table watermelon (id String,
color String,
root String,
stroke String,
venation String,
umbilical String,
touch String,
status String)
ROW format delimited fields terminated by ',' STORED AS TEXTFILE;
然后将数据发送到虚拟机,找到文件路径执行以下类似命令
load data local inpath '/home/wang/hbasedatas/xigua.txt' into table watermelon;
然后在hive中查看以下
select * from watermelon limit 10;
总结就是将csv或者excel上传到虚拟机中,然后打开HIVE建表,然后执行语句导入数据,然后可以select查看前几条的数据。