Hue如何上传本地excel到hive
1、处理本地数据将excel转为csv格式,并将列名删除,只保留数据2、在HDFS上创建文件夹,并上传本地数据3、在hive中建表CREATE EXTERNAL TABLE `abc.info`( `a` string COMMENT 'ID', `b` string COMMENT '名称', `c` string COMMENT '需求' )row format delimited fields terminated by ',' stored as textfi










