1.15总结
1.15总结蒽。。
将获取到txt数据用表格打开选择分隔符为|,然后修改为csv文件(在网页)直接上传hadoop目录里面
/user/hive
上传后就开始写hive语句建表等一系列操作。。
create database 库名字; use 库名; show tables; show tables in itheima;-- 显示itheima库下面的表 desc formatted 表名字; -- 显示表的信息
create table 表名()...
删除表数据但表结构不删除
truncate table 表名
然后将上传到hadoop上的csv文件导入到新创建的表中,不要加local
load data inpath '/user/hive/test1.csv' into table 表名;
导入数据中文乱码
alter table 表名 set serdeproperties('serialization.encoding'='GBK');
没解决。。。
我换成上传txt文件,更换分隔符就好了。。