hive处理数据

举报
没头脑 发表于 2022/06/18 08:26:28 2022/06/18
【摘要】 操作命令数据预处理:剔除数据中任意字段为空值INSERT OVERWRITE TABLE result01 select * from salary where userid is not null and dept_id is not null and salarys is not null剔除identity字段数值在0-100以外的值INSERT OVERWRITE TAB...
操作命令

数据预处理:剔除数据中任意字段为空值

INSERT OVERWRITE TABLE result01
    select * from salary
    where userid is not null and dept_id is not null and salarys is not null

剔除identity字段数值在0-100以外的值

INSERT OVERWRITE TABLE result
    SELECT * FROM hittable
    WHERE identity between 0 and 100 ;

查看总数

select count(*) from item;

查询提供啤酒或葡萄酒的第一项产品(Item01)的总行数

select count(*) as num from item where item='Beer' or item01 = 'Wine';

查询第一次购买产品中最畅销的产品排名(item01)

select item01,count(item01) as num from item 
group by item01 
order by num desc;

查询牛奶出现在每一行购买供品的概率

select b.num/a.num as rate from(
select count(*) num from item) a,
(select count(*) num from item
where item01=='Milk' 
or item02=='Milk' 
or item02=='Milk'
or item03=='Milk'
or item04=='Milk') b ;
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。