Hive SQL-DDL、DML

文章详细介绍了ApacheHive中的SQL操作,包括数据定义语言(DDL)如建表、修改表、数据类型、SerDe、分区表、内部表与外部表,以及数据操纵语言(DML)如加载数据、插入数据、动态分区插入等。内容涵盖Hive如何映射HDFS文件、如何通过分区和分桶优化查询效率,并展示了各种操作示例。
摘要由CSDN通过智能技术生成

Apache Hive SQL-DDL、DML


内容大纲
#1、HQL DDL 数据定义语言 针对表的
 核心:建表语句   直接决定了表和文件之间能否映射成功
 	数据类型
 	SerDe序列化机制
 	分隔符语法
 	内部表、外部表
 	数据存储路径
 	分区表
 	分桶表
  alter修改表

#2、HQL DML 数据操纵语言  针对表的数据
	load加载数据
	insert插入数据
		多重插入
		动态分区插入
		数据导出
		
#3、HQL常用的show语法		

一、Hive SQL–DDL–建表
1.1、IF NOT EXISTS
  • 建表的时候,如果表名已经存在,默认会报错,通过IF NOT EXISTS关键字可以忽略异常

    --第一次创建表
    0: jdbc:hive2://node1:10000> create table t_1(id int,name string,age int);
    --再次执行
    0: jdbc:hive2://node1:10000> create table t_1(id int,name string,age int);
    Error: Error while processing statement: FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. AlreadyExistsException(message:Table t_1 already exists) (state=08S01,code=1)
    --Error while processing statement 执行期间的错误 往往就是逻辑错误
    
    --加上if not exists忽略异常
    0: jdbc:hive2://node1:10000> create table if not exists t_1(id int,name string,age int);
    
    0: jdbc:hive2://node1:10000> creatf table t_1(id int,name string,age int);
    Error: Error while compiling statement: FAILED: ParseException line 1:0 cannot recognize input near 'creatf' 'table' 't_1' (state=42000,code=40000)
    0: jdbc:hive2://node1:10000> 
    --Error while compiling statement 编译期间的错误  SQL语法问题
    
    hivesql -->编译--->执行
    
1.2、Hive的数据类型

https://cwiki.apache.org/confluence/display/Hive/LanguageManual+Types

  • Hive除了支持SQL类型之外,还支持java数据类型

  • Hive除了支持基础数据类型之外,还支持复合类型(array数组 map映射);

    • 针对复合类型的数据 要想直接从文件中解析成功 还必须配合分隔符指定的语法。
  • Hive中大小写不敏感;

  • 在建表的时候,最好表的字段类型要和文件中的类型保持一致

    • 如果不一致,Hive会尝试进行类型隐式转换,不保证转换成功,如果不成功,显示null;
  • 栗子

    --创建数据库并切换使用
    create database if not exists itheima;
    use itheima;
    
    --建表
    create table t_archer(
          id int comment "ID",
          name string comment "英雄名称",
          hp_max int comment "最大生命",
          mp_max int comment "最大法力",
          attack_max int comment "最高物攻",
          defense_max int comment "最大物防",
          attack_range string comment "攻击范围",
          role_main string comment "主要定位",
          role_assist string comment "次要定位"
    ) comment "王者荣耀射手信息"
    row format delimited
    fields terminated by "\t";
    
    --查看表数据 查看表的元数据信息
    select * from t_archer;
    desc formatted t_archer;
    
    --上传文件到表对应的HDFS目录下
    [root@node1 hivedata]# hadoop fs -put archer.txt /user/hive/warehouse/itheima.db/t_archer
    
    [root@node1 hiedata]# pwd
    /root/hivedata
    
1.3、Hive读写HDFS上文件
  • 机制:SerDe(Serializer and Deserializer)序列化机制

  • Hive使用SerDe机制读写HDFS上文件

  • 读文件

    • HDFS files --> InputFileFormat --> <key, value> --> Deserializer --> Row object

      #1、使用InputFileFormat(默认实现TextInputFormat)读取hdfs上文件
          一行一行读取数据,返回<k,v>键值对类型
      #2、返回<key, value>,其中数据存储在value中
      
      #3、使用Deserializer反序列化动作读取value  解析成为对象(Row object)
          默认的序列化类LazysimpleSerDe
      
  • 写文件

    • Row object --> Serializer --> <key, value> --> OutputFileFormat --> HDFS files
  • 分隔符指定语法

    • 语法格式

      ROW FORMAT DELIMITED | SERDE
      
      ROW FORMAT DELIMITED  表示使用LazySimpleSerDe类进行序列化解析数据
       
      ROW FORMAT SERDE      表示使用其他SerDe类进行序列化解析数据
      
    • ROW FORMAT DELIMITED具体的子语法

      row format delimited
      [fields terminated by char]  #指定字段之间的分隔符
      [collection items terminated by char]  #指定集合元素之间的分隔符
      [map keys terminated by char]         #指定map类型kv之间的分隔符
      [lines terminated by char]            #指定换行符
      
  • 默认分隔符

    • Hive在建表的时候,如果没有row format语法,则该表使用==\001默认分隔符==进行字段分割;
    • 如果此时文件中的数据字段之间的分隔符也是\001 ,那么就可以直接映射成功。
    • 针对默认分隔符,其是一个不可见分隔符,在代码层面是\001表示
    • 在vim编辑器中,连续输入ctrl+v 、ctrl+a;
    • 在实际工作中,Hive最喜欢的就是\001分隔符,在清洗数据的时候,有意识的把数据之间的分隔符指定为\001;
  • 栗子

    --建表
    create table t_hot_hero_skin_price(
          id int,
          name string,
          win_rate int,
          skin_price map<string,int>
    )
    row format delimited
    fields terminated by ',' --字段之间分隔符
    collection items terminated by '-'  --集合元素之间分隔符
    map keys terminated by ':'; --集合元素kv之间分隔符;
    
    --上传数据
    hadoop fs -put hot_hero_skin_price.txt /user/hive/warehouse/itheima.db/t_hot_hero_skin_price 
    
    select *
    from t_hot_hero_skin_price;
    
    
    --有点想法: 就把map数据类型当成字符串映射如何?
    create table t_hot_hero_skin_price_str(
          id int,
          name string,
          win_rate int,
          skin_price string
    )
    row format delimited
    fields terminated by ',';
    
    hadoop fs -put hot_hero_skin_price.txt /user/hive/warehouse/itheima.db/t_hot_hero_skin_price_str 
    
    --结论 
    	·1、不管使用map还是使用string来定义数据 都能解析映射成功
    	 2、区别在于使用的过程中 一个是针对map类型数据处理  一个是针对string类型的数据处理
    	 
    	 
    select skin_price from t_hot_hero_skin_price;	 
    select skin_price from t_hot_hero_skin_price_str;
    
    
    select skin_price["至尊宝"] from t_hot_hero_skin_price limit 1;	 
    select skin_price["至尊宝"] from t_hot_hero_skin_price_str limit 1; --语法错误
    
    
    --建表 不指定分隔符
    create table t_team_ace_player(
       id int,
       team_name string,
       ace_player_name string
    ); --没有指定row format语句 此时采用的是默认的\001作为字段的分隔符
    
    hadoop fs -put team_ace_player.txt /user/hive/warehouse/itheima.db/t_team_ace_player
    
    select * from t_team_ace_player;
    
1.4、内部表、外部表

表的组成: 元数据 + 数据文件

内部表: 删除的时候, 既要删元数据, 又要删除 数据文件, 应用场景: 部门内部操作的文件

外部表: 删除的时候, 只删除元数据, 数据文件本身不删除, 应用场景: 多个不同部分共享的文件

--创建内部表
create table student_inner(Sno int,Sname string,Sex string,Sage int,Sdept string) row format delimited fields terminated by ',';

--创建外部表 关键字external
create external table student_external(Sno int,Sname string,Sex string,Sage int,Sdept string) row format delimited fields terminated by ',';

--上传文件到内部表、外部表中
hadoop fs -put students.txt /user/hive/warehouse/itheima.db/student_inner
hadoop fs -put students.txt /user/hive/warehouse/itheima.db/student_external

--好像没啥区别 都能映射成功 数据也都在HDFS上

--针对内部表、外部表 进行drop删除操作
drop table student_inner;  --内部表在删除的时候 元数据和数据都会被删除
drop table student_external; --外部表在删除的时候 只删除元数据  而HDFS上的数据文件不会动
  • 外部表有什么好处

    最大的好处是防止误操作删除表的时候 把表的数据一起删除。
    
  • 可以通过命令去查询表的元数据信息 获取表的类型

    desc formatted table_name;
    
    MANAGED_TABLE     内部表、受控表
    EXTERNAL_TABLE    外部表
    
1.5、表数据在HDFS上存储路径

存储路径由hive.metastore.warehouse.dir 属性指定。默认值是:/user/hive/warehouse

  • 不管是内部表,还是外部表,在HDFS上的路径如下:

    /user/hive/warehouse/itcast.db/t_array
    
    /user/hive/warehouse/数据库名.db/表名
    
  • 栗子

    --在建表的时候 可以使用location关键字指定表的路径在HDFS任意位置
    create table t_team_ace_player_location(
     id int,
     team_name string,
     ace_player_name string)
     location '/data'; --使用location关键字指定本张表数据在hdfs上的存储路径
     
    --此时再上传数据 就必须上传到指定的目录下 否则就解析映射失败了
    
  • 在实际开发中,最好集中维护管理Hive表数据,避免文件在HDFS随意存放。


二、Hive的分区表
2.1、分区表的引入背景
create table t_all_hero(
   id int,
   name string,
   hp_max int,
   mp_max int,
   attack_max int,
   defense_max int,
   attack_range string,
   role_main string,
   role_assist string
)
row format delimited
fields terminated by "\t";

--上传文件
hadoop fs -put archer.txt assassin.txt mage.txt support.txt tank.txt warrior.txt /user/hive/warehouse/itheima.db/t_all_hero

select * from t_all_hero;


--查询role_main主要定位是射手并且hp_max最大生命大于6000的有几个

select count(*) from t_all_hero where role_main="archer" and hp_max >6000;

--思考:上述查询sql底层应该如何去查询数据? 要不要全表扫描?

--问题:要进行过滤 就需要全表扫描 不全表扫描呢 又得不出正确结果?性能如何优化呢?
--优化要求  如何才能够减少全表扫描 而结果又正确。
2.2、分区表的创建
--经过大脑分析 我们认为应该根据角色主定位进行分区 所以分区的字段就是role_main
create table t_all_hero_part(
   id int,
   name string,
   hp_max int,
   mp_max int,
   attack_max int,
   defense_max int,
   attack_range string,
   role_main string,
   role_assist string
)
partitioned by(role_main string)
row format delimited
fields terminated by "\t";

--错误说 分区字段重复了 好家伙
Error: Error while compiling statement: FAILED: SemanticException [Error 10035]: Column repeated in partitioning columns (state=42000,code=10035)


--分区表建表 
create table t_all_hero_part(
   id int,
   name string,
   hp_max int,
   mp_max int,
   attack_max int,
   defense_max int,
   attack_range string,
   role_main string,
   role_assist string
) partitioned by (role string)--注意哦 这里是分区字段
row format delimited
fields terminated by "\t";

--查询分区表 发现分区字段也显示出来了
select * from t_all_hero_part;
2.3、分区表的数据加载
2.3.1、静态分区加载
--静态加载分区表数据
load data local inpath '/root/hivedata/archer.txt' into table t_all_hero_part partition(role='sheshou');
load data local inpath '/root/hivedata/assassin.txt' into table t_all_hero_part partition(role='cike');
load data local inpath '/root/hivedata/mage.txt' into table t_all_hero_part partition(role='fashi');
load data local inpath '/root/hivedata/support.txt' into table t_all_hero_part partition(role='fuzhu');
load data local inpath '/root/hivedata/tank.txt' into table t_all_hero_part partition(role='tanke');
load data local inpath '/root/hivedata/warrior.txt' into table t_all_hero_part partition(role='zhanshi');

--查询一下验证是否加载成功
select * from t_all_hero_part;

思考:如果分区很多 一个一个加载,效率如何?

因为静态分区的时候 分区值是用户手动写死的 有写错的风险。

2.3.2、动态分区加载
  • 设置允许动态分区、设置动态分区模式

    --动态分区
    set hive.exec.dynamic.partition=true; --注意hive3已经默认开启了
    set hive.exec.dynamic.partition.mode=nonstrict;
    
    --模式分为strict严格模式  nonstrict非严格模式
    严格模式要求 分区字段中至少有一个分区是静态分区。
    
  • 动态分区加载数据

    insert + select

    插入的数据来自于后面的查询语句返回的结果。

    查询返回的内容,其字段类型、顺序、个数要和待插入的表保持一致。

    --创建一张新的分区表 t_all_hero_part_dynamic
    create table t_all_hero_part_dynamic(
        id int,
        name string,
        hp_max int,
        mp_max int,
        attack_max int,
        defense_max int,
        attack_range string,
        role_main string,
        role_assist string
    ) partitioned by (role string)
    row format delimited
    fields terminated by "\t";
    
    --执行动态分区插入  --注意 分区值并没有手动写死指定
    insert into table t_all_hero_part_dynamic partition(role) 
    select tmp.*,tmp.role_main from t_all_hero tmp;
    
    --查询验证结果
    select * from t_all_hero_part_dynamic;
    

    在执行动态分区插入数据的时候,如果是严格模式strict,要求至少一个分区为静态分区?

    partition(guojia=“zhongguo”,sheng) --第一个分区写死了(静态) 符合严格模式。

    partition(guojia,sheng) --两个分区都是动态确定的 需要非严格模式

2.4、分区表的使用
--非分区表 全表扫描过滤查询
select count(*) from t_all_hero where role_main="archer" and hp_max >6000;

--分区表 先基于分区过滤 再查询
select count(*) from t_all_hero_part where role="sheshou" and hp_max >6000;
2.5、分区表注意事项
  • 分区表的字段不能是表中已有的字段;分区的字段也会显示在查询结果上;

  • 分区的字段是虚拟的字段,出现在表所有字段的后面,其值来自于加载数据到表中的时候手动指定。

  • 分区在底层的形式就是以文件夹管理不同的文件;不同文件夹就是表不同分区;文件夹的名字:

/user/hive/warehouse/数据库.db/表
  							/分区字段=分区值1
								    xxxx.txt
  							/分区字段=分区值2
  								zzzz.txt
  • 分区表是一种优化表,建表的时候可以不使用,但是,当创建分区表之后,使用分区字段查询可以减少全表扫描,提高查询的效率

  • 企业中常用的分区字段

    • 地域维度:省,市
    • 时间维度:day,month,year
2.6、多重分区表
  • 分区表支持基于多个字段进行分区

    partitioned by(字段1 ,字段2....)
    
  • 多个分区之间是一种递进关系,可以理解为在前一个分区的基础上继续分区;从底层来说就是文件夹下面继续划分子文件夹;

  • 常见的多分区就是2个分区

--以国家、省创建分区表
create table t_user_double_p(id int,name string,country string) partitioned by(guojia string,sheng string) row format delimited fields terminated by  ',';

--加载数据到多分区表中
load data local inpath '/root/hivedata/china_sh.txt'  into table t_user_double_p partition(guojia="zhongguo",sheng="shanghai");

load data local inpath '/root/hivedata/china_sz.txt'  into table t_user_double_p partition(guojia="zhongguo",sheng="shenzhen");

load data local inpath '/root/hivedata/usa_dezhou.txt'  into table t_user_double_p partition(guojia="meiguo",sheng="dezhou");

--查询来自于中国深圳的用户有哪些?
select * from t_user_double_p where guojia="zhongguo"and sheng="shenzhen";

三、Hive分桶表(分簇表)
3.1、从语法层面解析分桶含义
CLUSTERED BY xxx INTO N BUCKETS
--根据xxx字段把数据分成N桶
--根据表中的字段把数据文件成为N个部分

t_user(id int,name string);
--1、根据谁分?
 CLUSTERED BY xxx ;  xxx必须是表中的字段
--2、分成几桶?
 N BUCKETS   ;N的值就是分桶的个数
--3、分桶的规则?
clustered by id into 3 bucket

hashfunc(分桶字段)  %  N bucket  余数相同的来到同一个桶中
1、如果分桶的字段是数字类型的字段,hashfunc(分桶字段)=分桶字段本身
2、如果分桶的字段是字符串或者其他字段,hashfunc(分桶字段) = 分桶字段.hashcode
3.2、分桶的创建
CREATE TABLE itheima.t_usa_covid19_bucket(
      count_date string,
      county string,
      state string,
      fips int,
      cases int,
      deaths int)
CLUSTERED BY(state) INTO 5 BUCKETS; --分桶的字段一定要是表中已经存在的字段

--根据state州分为5桶 每个桶内根据cases确诊病例数倒序排序
CREATE TABLE itheima.t_usa_covid19_bucket_sort(
     count_date string,
     county string,
     state string,
     fips int,
     cases int,
     deaths int)
CLUSTERED BY(state)
sorted by (cases desc) INTO 5 BUCKETS;--指定每个分桶内部根据 cases倒序排序
3.3、分桶表的数据加载
--step1:开启分桶的功能 从Hive2.0开始不再需要设置
set hive.enforce.bucketing=true;

--step2:把源数据加载到普通hive表中
CREATE TABLE itheima.t_usa_covid19(
       count_date string,
       county string,
       state string,
       fips int,
       cases int,
       deaths int)
row format delimited fields terminated by ",";

--将源数据上传到HDFS,t_usa_covid19表对应的路径下
hadoop fs -put us-covid19-counties.dat /user/hive/warehouse/itheima.db/t_usa_covid19

--step3:使用insert+select语法将数据加载到分桶表中
insert into t_usa_covid19_bucket select * from t_usa_covid19;

select * from t_usa_covid19_bucket;
3.4、分桶表的使用
--基于分桶字段state查询来自于New York州的数据
--不再需要进行全表扫描过滤
--根据分桶的规则hash_function(New York) mod 5计算出分桶编号
--查询指定分桶里面的数据 就可以找出结果  此时是分桶扫描而不是全表扫描
select *
from t_usa_covid19_bucket where state="New York";
3.5、分桶的总结
  • 分桶表也是一种优化表,可以**减少join查询时笛卡尔积的数量**、提高抽样查询的效率
  • 分桶表的字段必须是表中已有的字段;
  • 分桶表需要使用间接的方式才能把数据加载进入:insert+select
  • 在join的时候,针对join的字段进行分桶,可以提高join的效率 减少笛卡尔积数量。

四、Hive SQL–DDL其他操作

因为Hive建表、加载数据及其方便高效;在实际的应用中,如果建表有问题,通常可以直接drop删除重新创建加载数据。时间成本极低。

如果表是外部表的话,更加完美了。

4.1、Database 数据库 DDL操作
--创建数据库
create database if not exists itcast
comment "this is my first db"
with dbproperties ('createdBy'='Allen');

--描述数据库信息
describe database itcast;
describe database extended itcast;
desc database extended itcast;

--切换数据库
use default;
use itcast;
create table t_1(id int);

--删除数据库
--注意 CASCADE关键字慎重使用
DROP (DATABASE|SCHEMA) [IF EXISTS] database_name [RESTRICT|CASCADE];
drop database itcast cascade ;


--更改数据库属性
ALTER (DATABASE|SCHEMA) database_name SET DBPROPERTIES (property_name=property_value, ...);
--更改数据库所有者
ALTER (DATABASE|SCHEMA) database_name SET OWNER [USER|ROLE] user_or_role;
--更改数据库位置
ALTER (DATABASE|SCHEMA) database_name SET LOCATION hdfs_path;
4.2、Table 表 DDL操作
drop table t_user;
-- todo 目标: 表结构的增删改查
-- todo 1 查看表的详细信息
desc formatted db_4.t_user;
-- todo 2 查看建表语句
show create table db_4.t_user;
-- todo 3 更改表的注释
alter table db_4.t_user set tblproperties('comment'='this is qq info table');
show create table db_4.t_user;
-- todo 4 更改表的存储位置
alter table db_4.t_user set location '/test/data/t_user_2';
insert into db_4.t_user values(1, '张三');
-- todo 5 更改列的名称/类型
CREATE TABLE t1_change (a int, b int, c int);
alter table t1_change change b b1 string;

-- todo 6 添加/替换列
alter table t1_change add columns (d int);
alter table t1_change replace columns (a1 int, a2 string, a3 int, a4 int);

4.3、Partition分区 DDL操作

比较重要的是增加分区删除分区操作

-- 准备工作
drop database db_5 cascade;
create database if not exists db_5;
use db_5;

--1、增加分区
--step1: 创建表 手动加载分区数据
drop table if exists t1_student_province_part;

create table if not exists t1_student_province_part (
    num int,
    name string,
    sex string,
    age int,
    dept string)
partitioned by (province string, city string)
row format delimited fields terminated by ','
;

load data local inpath '/root/04_students.txt' into table t1_student_province_part partition(province ="guangdong", city='guangzhou');
select * from t1_student_province_part;

--step2:手动创建分区的文件夹 且手动上传文件到分区中 绕开了hive操作  发现hive无法识别新分区
hadoop fs -mkdir /user/hive/warehouse/db_5.db/t1_student_province_part/province=guangdong/city=shenzhen
hadoop fs -put 04_students.txt /user/hive/warehouse/db_5.db/t1_student_province_part/province=guangdong/city=shenzhen

show partitions t1_student_province_part;
select * from t1_student_province_part;

--step3:修改hive的分区,添加一个分区元数据
ALTER TABLE t1_student_province_part ADD PARTITION (province='guangdong', city='shenzhen');
select * from t1_student_province_part;

-- 查看表的分区
show partitions t1_student_province_part;

----此外还支持一次添加多个分区
ALTER TABLE t1_student_province_part ADD
    PARTITION (province='guangxi', city='guilin') location '/test/data/guangxi/guilin'
    PARTITION (province='guangxi', city='nanning') location '/test/data/guangxi/nanning';
select * from t1_student_province_part;

--2、重命名分区
ALTER TABLE t1_student_province_part PARTITION (province='guangxi', city='guilin') RENAME TO PARTITION (province='guangxi', city='gl');
show partitions t1_student_province_part;

--3、删除分区
ALTER TABLE t1_student_province_part DROP if exists PARTITION (province='guangxi', city='gl');
ALTER TABLE t1_student_province_part DROP if exists PARTITION (province='guangxi', city='nanning') PURGE; --直接删除数据 不进垃圾桶 有点像skipTrash

--4、修复分区
MSCK [REPAIR] TABLE table_name [ADD/DROP/SYNC PARTITIONS];
--详细使用见课件资料

--5、修改分区
--更改分区文件存储格式
ALTER TABLE t1_student_province_part PARTITION (province='guangxi', city='nanning') SET FILEFORMAT file_format;
--更改分区位置
hadoop fs -mkdir -p /user/hive/warehouse/db_5.db/t1_student_province_part/province=guangxi/city=nanning
ALTER TABLE t1_student_province_part PARTITION (province='guangxi', city='nanning')
    SET LOCATION "/user/hive/warehouse/db_5.db/t1_student_province_part/province=guangxi/city=nanning";

select * from t1_student_province_part;
show partitions t1_student_province_part;
desc formatted t1_student_province_part;

五、Hive SQL中常见的show语法

show databases

show tables

show partitions

desc formatted table_name; 查看表的元数据信息

show create table table_name; 获取表的DDL建表语句

show functions;

--1、显示所有数据库 SCHEMAS和DATABASES的用法 功能一样
show databases;
show schemas;

--2、显示当前数据库所有表/视图/物化视图/分区/索引
show tables;
SHOW TABLES [IN database_name]; --指定某个数据库

--3、显示当前数据库下所有视图
--视图相当于没有数据临时表  虚拟表
Show Views;
SHOW VIEWS 'test_*'; -- show all views that start with "test_"
SHOW VIEWS FROM test1; -- show views from database test1
SHOW VIEWS [IN/FROM database_name];

--4、显示当前数据库下所有物化视图
SHOW MATERIALIZED VIEWS [IN/FROM database_name];

--5、显示表分区信息,分区按字母顺序列出,不是分区表执行该语句会报错
show partitions table_name;
show partitions itheima.student_partition;

--6、显示表/分区的扩展信息
SHOW TABLE EXTENDED [IN|FROM database_name] LIKE table_name;
show table extended like student;
describe formatted itheima.student;

--7、显示表的属性信息
SHOW TBLPROPERTIES table_name;
show tblproperties student;

--8、显示表、视图的创建语句
SHOW CREATE TABLE ([db_name.]table_name|view_name);
show create table student;

--9、显示表中的所有列,包括分区列。
SHOW COLUMNS (FROM|IN) table_name [(FROM|IN) db_name];
show columns  in student;

--10、显示当前支持的所有自定义和内置的函数
show functions;

--11、Describe desc
--查看表信息
desc extended table_name;
--查看表信息(格式化美观)
desc formatted table_name;
--查看数据库相关信息
describe database database_name;

六、Hive DML 数据操纵语言
6.1、load
  • 功能:load加载操作是将数据文件移动到与 Hive表对应的位置的纯复制/移动操作.

    #1、如何理解这个纯字?
    load命令是单纯数据搬运移到动作,移到加载的过程中,不会对数据进行任何修改操作。
    
    #2、有的是移动操作,有的是复制操作
    
  • 语法

    LOAD DATA [LOCAL] INPATH 'filepath' [OVERWRITE] INTO
    TABLE tablename [PARTITION (partcol1=val1, partcol2=val2 ...)]
    
  • Local关键字的含义

    • local表示是从本地文件系统加载数据到Hive的表中;
    • 如果没有local表示的是从HDFS文件系统加载数据到Hive表中;
    • 问本地指的是哪个本地? HS2本地的文件系统
  • 演示

    --step1:建表
    --建表student_local 用于演示从本地加载数据
    create table student_local(num int,name string,sex string,age int,dept string) row format delimited fields terminated by ',';
    --建表student_HDFS  用于演示从HDFS加载数据到非分区表
    create table student_HDFS(num int,name string,sex string,age int,dept string) row format delimited fields terminated by ',';
    --建表student_HDFS_p 用于演示从HDFS加载数据到分区表
    create table student_HDFS_p(num int,name string,sex string,age int,dept string) partitioned by(country string) row format delimited fields terminated by ',';
    
    --step2:加载数据
    -- 从本地加载数据  数据位于HS2(node1)本地文件系统  本质是hadoop fs -put上传操作
    --Loading data to table itheima.student_local from file:/root/hivedata/students.txt
    LOAD DATA LOCAL INPATH '/root/hivedata/students.txt' INTO TABLE student_local;
    
    --从HDFS加载数据  数据位于HDFS文件系统根目录下  本质是hadoop fs -mv 移动操作
    --Loading data to table itheima.student_hdfs from hdfs://node1:8020/stu/students.txt
    
    --先把数据上传到HDFS上  hadoop fs -put /root/hivedata/students.txt /
    LOAD DATA INPATH '/students.txt' INTO TABLE student_HDFS;
    
    ----从HDFS加载数据到分区表中并指定分区  数据位于HDFS文件系统根目录下
    --先把数据上传到HDFS上 hadoop fs -put /root/hivedata/students.txt /
    LOAD DATA INPATH '/students.txt' INTO TABLE student_HDFS_p partition(country ="China");
    
  • 总结:建议在HIve中使用load命令加载数据到表中,这也是Hive比Mysql加载数据高效地方所在。

  • 其实不管是使用load还是直接使用hadoop fs,目标就是把文件放置在表对应的目录下。

6.2、insert
  • 探讨

    --如果使用操作Mysql的思维来玩Hive会如何  使用insert+values的方式插入数据。
    
    create table t_insert(id int,name string);
    
    insert into table t_insert values(1,"allen");
    
    --可以执行 但是效率极低 因为底层是通过MapReduce插入数据的  因此实际中推荐使用load加载数据
    
6.2.1、insert+select

在hive中,insert主要是结合 select 查询语句使用,将查询结果插入到表中

  • 保证后面select查询语句返回的结果字段个数、类型、顺序和待插入表一致
  • 如果不一致,Hive会尝试帮你转换,但是不保证成功;
  • insert+select也是在数仓中ETL数据常见的操作。
--step1:创建一张源表student
drop table if exists student;
create table student(num int,name string,sex string,age int,dept string)
row format delimited
fields terminated by ',';
--加载数据
load data local inpath '/root/hivedata/students.txt' into table student;

select * from student;

--step2:创建一张目标表  只有两个字段
create table student_from_insert(sno int,sname string);
--使用insert+select插入数据到新表中
insert into table student_from_insert
select num,name from student;

select *
from student_from_insert;
6.2.2、Multi Inserts 多重插入
  • 功能:一次扫描,多次插入

  • 栗子

    create table source_table (id int, name string) row format delimited fields terminated by ',';
    
    create table test_insert1 (id int) row format delimited fields terminated by ',';
    create table test_insert2 (name string) row format delimited fields terminated by ',';
    
    
    --普通插入:
    insert into table test_insert1 select id from source_table;
    insert into table test_insert2 select name from source_table;
    
    --在上述需求实现中 从同一张表扫描了2次 分别插入不同的目标表中 性能低下。
    
    --多重插入:
    from source_table                     
    insert overwrite table test_insert1 
    select id
    insert overwrite table test_insert2
    select name;
    --只需要扫描一次表  分别把不同字段插入到不同的表中即可 减少扫描次数 提高效率
    
6.2.3、Dynamic partition inserts 动态分区插入
  • 何谓动态分区,静态分区

    针对的是分区表。
    --问题:分区表中分区字段值是如何确定的?
    
    1、如果是在加载数据的时候人手动写死指定的  叫做静态分区 
    load data local inpath '/root/hivedata/usa_dezhou.txt'  into table t_user_double_p partition(guojia="meiguo",sheng="dezhou");
    
    2、如果是通过insert+select 动态确定分区值的,叫做动态分区
    insert table partition (分区字段) +select 
    
  • 栗子

    --1、首先设置动态分区模式为非严格模式 默认已经开启了动态分区功能
    set hive.exec.dynamic.partition = true;
    set hive.exec.dynamic.partition.mode = nonstrict;
    
    --2、当前库下已有一张表student
    select * from student;
    
    --3、创建分区表 以sdept作为分区字段
    create table student_partition(Sno int,Sname string,Sex string,Sage int) partitioned by(Sdept string);
    
    --4、执行动态分区插入操作
    insert into table student_partition partition(Sdept)
    select num,name,sex,age,dept from student;
    --其中,num,name,sex,age作为表的字段内容插入表中
    --dept作为分区字段值
    
    select *
    from student_partition;
    
    show partitions student_partition;
    
6.2.4、导出数据操作
  • 功能:把select查询的结果导出成为一个文件。

  • 注意:导出操作是一个overwrite操作,可能会让你凉凉。慎重!!!!

  • 语法

    --当前库下已有一张表student
    select * from student;
    
    --1、导出查询结果到HDFS指定目录下
    insert overwrite directory '/tmp/hive_export/e1' select num,name,age from student limit 2;   --默认导出数据字段之间的分隔符是\001
    
    --2、导出时指定分隔符和文件存储格式
    insert overwrite directory '/tmp/hive_export/e2' row format delimited fields terminated by ','
    stored as orc
    select * from student;
    
    --3、导出数据到本地文件系统指定目录下
    insert overwrite local directory '/root/hive_export/e1' select * from student;
    

  • 3
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值