插入
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’;
Hive Shell常用操作: https://www.cnblogs.com/skyl/p/4736129.html
共同学习,写下你的评论
评论加载中...
作者其他优质文章