目录
1.6 export导出与import 导入 hive表数据(内部表操作)
1 Hive数据导入
1.1 直接向表中插入数据(强烈不推荐使用)
hive (myhive)> create table score3 like score; hive (myhive)> insert into table score3 partition(month ='201807') values ('001','002','100');
1.2 通过load加载数据(必须掌握)
-
语法:
hive> load data [local] inpath 'dataPath' [