大数据开发

HQL操作之数据操作

2021-02-03  本文已影响0人  奋斗的蛐蛐

HQL操作之数据操作

数据导入

LOAD DATA [LOCAL] INPATH 'filepath' [OVERWRITE] INTO TABLE tablename [PARTITION (partcol1=val1, partcol2=val2 ...)]
CREATE TABLE tabB (
  id INT,
  name string,
  area string
) ROW FORMAT DELIMITED FIELDS TERMINATED BY ','
Location '/user/hive/tabB';

插入数据

-- 创建分区表
CREATE TABLE tabC (
  id INT
 ,name string
 ,area string
)
partitioned by (month string);
-- 插入数据
insert into table tabC partition(month='202001') values (5, 'wangwu', 'BJ'), (4, 'lishi', 'SH'), (3, 'zhangsan', 'TJ');
-- 插入查询的结果数据
insert into table tabC partition(month='202002') select id, name, area from tabC where month='202001';
-- 多表(多分区)插入模式
from tabC
insert overwrite table tabC partition(month='202003') select id, name, area where month='202002'
insert overwrite table tabC partition(month='202004') select id, name, area where month='202002';


-- 根据查询结果创建表,tabD 不是分区表
create table if not exists tabD as select * from tabC;

数据导出

--将查询数据导出到本地
insert overwrite local directory '/mnd/hadoop/data/tabC' select * from tabC;
-- 格式化输出
insert overwrite local directory '/mnd/hadoop/data/tabC'
row format delimited fields terminated by ' '
select * from tabC;

-- 输出到HDFS
insert overwrite directory '/hive-test/tabC'
row format delimited fields terminated by ' '
select * from tabC;

-- dfs 命令导出数据到本地。本质是执行数据文件的拷贝
dfs -get /user/hive/warehouse/mydb.db/tabc/month=202001 /home/hadoop/data/tabC4


-- hive 命令导出数据到本地。执行查询将查询结果重定向到文件 
hive -e "select * from mydb.tabC" > a.log

-- export 导出数据到HDFS。使用export导出数据时,不仅有数还有表的元数据信息 
export table tabC to '/user/hadoop/data/tabC4';


-- 使用 like tname创建的表结构与原表一致但是没数据。create ... as select ... 有数据到那时结构可能不一致
create table tabE like tabc;
-- export 导出的数据,可以使用 import 命令导入到 Hive 表中,HDFS路径
import table tabE from '/user/hadoop/data/tabC4';

-- 截断表,清空数据。(注意:仅能操作内部表) 
truncate table tabE;
-- 以下语句报错,外部表不能执行 truncate 操作
alter table tabC set tblproperties("EXTERNAL"="TRUE");
truncate table tabC;

导入数据:

import table student2 partition(month='201709') from '/user/hive/warehouse/export/student';

小结:

导入数据:

数据导出

上一篇下一篇

猜你喜欢

热点阅读