当前位置: 首页 > news >正文

hive数据表定义

分隔符
CREATE TABLE emp(
userid bigint,
emp_name array<string>,
emp_date map<string,date>,
other_info struct<deptname:string, gender:string>)
ROW FORMAT DELIMITED
FIELDS TERMINATED BY '\t'
COLLECTION ITEMS TERMINATED BY ','
MAP KEYS TERMINATED BY ':';

FIELDS TERMINATED BY '\t'                             --字段之间的分隔符为制表符('\t')

COLLECTION ITEMS TERMINATED BY ','         --集合项之间的分隔符为逗号(',')

MAP KEYS TERMINATED BY ':'                         --MAP中每个键值对由冒号分隔

如:birth date:1953-11-07,from date:1990-01-22


分区表 
create table dept_partition(  
deptno int, dname string, loc string) 
partitioned by (day string) 
row format delimited fields terminated by '\t'; 

查询分区表中数据

select * from dept_partition where day='20200401'; 

增加分区

alter table dept_partition add partition(day='20200404');alter table dept_partition add partition(day='20200405') partition(day='20200406'); 

删除分区

alter table dept_partition drop partition (day='20200406'); alter table dept_partition drop partition (day='20200404'), partition(day='20200405');  
 二级分区
create table dept_partition2(
deptno int, dname string, loc string ) 
partitioned by (day string, hour string)
row format delimited fields terminated by '\t'; 

http://www.lryc.cn/news/187068.html

相关文章:

  • OpenMesh 网格简化之顶点聚类
  • C++ 类和对象篇(八) const成员函数和取地址运算符重载
  • k8s 集群安装(vagrant + virtualbox + CentOS8)
  • 8、Docker数据卷与数据卷容器
  • 大数据与Hadoop入门理论
  • 持续集成部署-k8s-深入了解 Pod:探针
  • 来单提醒/客户催单 ----苍穹外卖day9
  • 【单片机】18-红外线遥控
  • 【Node.js】module 模块化
  • Vue中如何进行分布式日志收集与日志分析(如ELK Stack)
  • java学习--day23(线程池)
  • Unity Golang教程-Shader编写一个流动的云效果
  • Python数据攻略-Pandas与地理空间数据分析
  • sourceTree无法启动
  • 【ARM Coresight 系列文章19 -- Performance Monitoring Unit(性能监测单元)
  • 前端学习| 第二章
  • Unity中Shader光强与环境色
  • Android9 查看连接多个蓝牙耳机查看使用中的蓝牙耳机
  • 【EF Core】如何忽略影响导航属性(级联)
  • 【苍穹外卖 | 项目日记】第一天
  • WuThreat身份安全云-TVD每日漏洞情报-2023-10-07
  • SpringBoot整合Druid配置yml文件
  • 如何保证 RabbitMQ 的消息可靠性?
  • 图像分类数据集划分(创建ImageNet格式的数据集)
  • ArcGIS Engine:报错无法嵌入互操作类型“ESRI.ArcGIS.Geometry.EnvelopeClass”。请改用适用的接口。
  • 核货宝:服装店收银系统如何选择?收银系统选购指南!
  • GB/T 7134-2008 浇筑型工业有机玻璃板材检测
  • 数据采集平台(二)
  • Nginx + PHP 异常排查,open_basedir 异常处理
  • Linux免密登录