Hive -- 外部分区表

外部分区表

任务描述

本关任务:根据相关知识内容实现 Hive 外部分区表的操作。

内外部分区表的区别
  • Hive 创建内部表时(默认创建内部表),会将数据移动到数据仓库指向的路径;创建外部表(需要加关键字EXTERNAL),仅记录数据所在的路径,不对数据的位置做任何改变。

  • 在删除表的时候,内部表的元数据和数据会被一起删除,而外部表只删除元数据,不删除数据。

---创建mydb数据库  
create database if not exists mydb;
---使用mydb数据库  
use mydb;
---------- Begin ----------
---创建staff外部分区表    
create external table if not exists staff(    
    id int,    
    name string,    
    age int     
)    
partitioned by (department string)    
row format delimited fields terminated by ','    
stored as textfile;
---将不同部门员工的数据加载到相应的部门分区中:/root/department/    
load data local inpath '/root/department/operations.txt' into table staff partition(department='operations');    
load data local inpath '/root/department/development.txt' into table staff partition(department='development');    
load data local inpath '/root/department/sales.txt' into table staff partition(department='sales');
---查询staff表中sales和operations部门的员工数据   
select * from staff where department='sales' or department='operations';
---查看staff表简要结构   
desc staff;
---------- End ----------
---删除student表  
drop table mydb.staff;  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值