hive处理数据
【摘要】 操作命令数据预处理:剔除数据中任意字段为空值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)