概述
hive命令汇总--原著 首先申明这篇博客的内容不是我的原创。我只是拿过来。怕以后要用到。加深印象吧。
hive提供了很多的函数,可以在命令行下show function罗列所有的函数,你会发现这些函数名与mysql的很相近,绝大多数相同的,可通过describe function functionName查看函数
使用方法:
hive支持的数据类型很简单就INT(4 byte integer),BIGINT(8 byte integer),FLOAT(single precision),DOUBLE(double precision),BOOLEAN,STRING等原子类型,连日期类型也不支持,但通过to_date, unix_timestamp,date_diff, date_add, date_sub等函数就能完成mysql同样的时间日期复杂操作。
如下示例:
select * from tablename where to_date('cz_time') > to_date('2050-12-31');
select * form tablename where unix_timestamp(cz_time) > unix_timestamp('2050-12-31 15:32:28');
分区:
hive 与mysql分区有些区别,mysql分区是用表结构中的字段来分区(rangle, list,hash),而hive不同,他需要手工指定分区列,这个列是独立于表结构,但属于表中一列,在加载数据时手动指定分区。
创建表:
hive> create table pokes(foo int,bar string comment 'this is bar');
创建表并创建索引字段ds:
hive> create table invites(foo int,bar string) partitioned by (ds string);
显示所有表
hive> show tables;
按正则条件(正则表达式)显示表:
hive> show tables '.*s';
表增加一列
hive> alter table pokes add columns (new_col int);
添加一列并增加列字段注释:
hive> alter table invites add columns(new_col2 int comment 'a comment');
更改表名:
hive> altert table events rename to 3kooe;
删除表
hive> drop table pokes;
元数据存储
将本地文件中的数据加载到表中
hive> load data local inpath './example/files/kv1.txt' overwrite into table pokes;
加载本地数据,同时给定分区信息;
hive> load data local inpath '/k2.txt' overwrite into table invites partition (ds='2008-08-15');
加载dfs数据,同时给定分区信息
hive> load data inpath '/user/2.txt' overwrite into table invites partition (ds='2008-08-15');
sql操作:
按条件查询:
hive> select a.foo from invites a where a.ds="";
将查询数据输出至目录
hive> insert overwrite directory '/tmp/hdfs_out' select a.* from invites a where a.ds "";
将查询结果输出至本地目录
hive> insert overwrite local directory '/tmp/local_out' select a.* from pokes a;
选择所有列到本地目录
hive> INSERT OVERWRITE TABLE events SELECT a.* FROM profiles a;
hive> INSERT OVERWRITE TABLE events SELECT a.* FROM profiles a WHERE a.key < 100;
hive> INSERT OVERWRITE LOCAL DIRECTORY '/tmp/reg_3' SELECT a.* FROM events a;
hive> INSERT OVERWRITE DIRECTORY '/tmp/reg_4' select a.invites, a.pokes FROM profiles a;
hive> INSERT OVERWRITE DIRECTORY '/tmp/reg_5' SELECT COUNT(1) FROM invites a WHERE a.ds='';
hive> INSERT OVERWRITE DIRECTORY '/tmp/reg_5' SELECT a.foo, a.bar FROM invites a;
hive> INSERT OVERWRITE LOCAL DIRECTORY '/tmp/sum' SELECT SUM(a.pc) FROM pc1 a;
将一个表的统计结果插入到另一个表中。
hive>FROM invites a INSERT OVERWRITE TABLE events SELECT a.bar, count(1) WHERE a.foo > 0 GROUP BY a.bar;
hive> INSERT OVERWRITE TABLE events SELECT a.bar, count(1) FROM invites a WHERE a.foo > 0 GROUP BY a.bar;
hive> FROM pokes t1 JOIN invites t2 ON (t1.bar = t2.bar) INSERT OVERWRITE TABLE events SELECT t1.bar, t1.foo, t2.foo;
将多表数据插入到同一表中
最后
以上就是漂亮香水为你收集整理的hive命令汇总的全部内容,希望文章能够帮你解决hive命令汇总所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复