开心了, 就笑;不开心了,就过会儿再笑。。。。
发布时间:2017-07-24 11:36:38
语法:row_number() over (partition by 字段a order by 计算项b desc ) rank --这里rank是别名partition by:类似hive的建表,分区的意思;order by :排序,默认是升序,加desc降序;这里按字段a分区,对计算项b进行降序排序例子:over()中也可以什么都不写 就是多加一列输出行数hive> select * from .........【阅读全文】
发布时间:2017-06-21 14:55:04
insert into table us_mac_stat partition(day='20170619') select mobile_user_id, c from (select mobile_user_id, count(distinct mac) c from default.mobile_request_log_orc where day_id='20170619' and mobile_user_id<>'' and mobile_user_id is not null and mac<>'' and mac is not null group by (mobile_user_.........【阅读全文】
发布时间:2017-06-21 14:48:17
命令 hdfs dfs -du -h /data/结果 102.3 M 307.0 M /data/第一列标示该目录下总文件大小第二列标示该目录下所有文件在集群上的总存储大小和你的副本数相关,我的副本数是3 ,所以第二列的是第一列的三倍 (第二列内容=文件大小*副本数)第三列标示你查询的目录.........【阅读全文】
发布时间:2017-04-20 17:52:20
在hive中建表:create table student(Sno int,Sname string,Sex string,Sage int,Sdept string) row format delimited fields terminated by ',' stored as textfile;create table course(Cno int,Cname string) row format delimited fields terminated by ',' stored as textfile;create table sc(Sno int,.........【阅读全文】