hive数据的导入导出方式
导入方式 1、load方式 load data local inpath 'local_path' into table tb_name; 从本地复制了文件到表的路径下 应用场景:大部分的使用,文件几乎都是默认现在本地的 2、load方式,HDFS load data inpath 'hdfs_path' into table tb_name; 将文件移动到了表的路径下 应用场景:更适合大数据量的存储 3、 load方式,overwrite load data inpath 'hdfs_path' overwrite into table tb_name; 应用场景:适合一些重复写入的表(临时表),作为一个过渡使用 4、子查询方式,as create table tb_name as select sql; 应用场景:对于数据查询结果的保存 5、insert方式 传统关系型数据库中,insert是插入一个值 在hive中insert into table后面还是跟一个语句(select语句) insert into table select sql; 举例: create table emp_insert like emp; insert into table emp_insert select * from emp; 6、location 指定一个文件夹,然后将数据导入进去