继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

hive:基础

没有西西里
关注TA
已关注
手记 4
粉丝 0
获赞 3

插入

form student1
insert overwrite table copy_student3 select *
insert oberwrite table cpoy_student4 select *;

查看表结构

desc student1;

order by

使用 ORDER BY 查询的时候,为了优化查询的速度,使用 hive.mapred.mode 属性。
与数据库中 ORDER BY 的区别在于,在 hive.mapred.mode=strict 模式下必须指定limit ,否则执行会报错。

set hive.mapred.mode=strict;
select * from group_test order by uid limit 5;

Hive 创建索引

create index user_index on table user(id) as ‘org.apache.hadoop.hive.ql.index.compact.CompactIndexHandler’ with deferred rebuild IN TABLE user_index_table;

使用 index_test 表,在属性 id 上创建一个索引 index1_index_test 。
create index index1_index_test on table index_test(id) as ‘org.apache.hadoop.hive.ql.index.compact.CompactIndexHandler’ WITH DEFERERD REBUILD;

删除索引

drop index user_index on user;

查看索引

show index on user;

分区操作 创建分区

CREATE TABLE table_name(

)
PARTITION BY (dt STRING,country STRING);

自定义函数

create temporary function IFNullBol as ‘com.pingan.jrkj.datacenter.hive.udf.IFNullBol’;

打开App,阅读手记
1人推荐
发表评论
随时随地看视频慕课网APP