码迷,mamicode.com
首页 > 其他好文 > 详细

hive分区表

时间:2018-06-24 16:56:48      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:format   执行计划   where   src   sam   exp   alt   end   技术分享   

技术分享图片

技术分享图片

分区表创建

技术分享图片

技术分享图片

row format delimited fields terminated by ‘,‘;指明以逗号作为分隔符

 技术分享图片

依靠插入表创建分区表  从表sample_table选择 满足分区条件的 列插入到分区表中

insert into table partition_table partition(gender=‘M‘) select id,name from sample_table where gender=‘M‘;
insert into table partition_table partition(gender=‘F‘) select id,name from sample_table where gender=‘F‘;

explain可以查看执行计划

$ explain select *from sample_table where gender = ‘M‘;

$ explain select *from partition_table where gender = ‘M‘;

hive分区表

标签:format   执行计划   where   src   sam   exp   alt   end   技术分享   

原文地址:https://www.cnblogs.com/ggzhangxiaochao/p/9220775.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!