当前位置:   article > 正文

HIVE简单实战_hive中自己创建一张商品信息表

hive中自己创建一张商品信息表
需求:统计各个城市所属区域下最受欢迎的Top 3产品

数据准备:
mysql:
city_info : 城市信息表
在这里插入图片描述
product_info: 产品信息表
在这里插入图片描述
hive:
user_click:用户行为点击日志表
在这里插入图片描述

create table user_click(
user_id int,
session_id string,
action_time string,
city_id int,
product_id int
) partitioned by (day string)
row format delimited fields terminated by ',';
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

一、在hive中创建city_info,product_info

create table city_info(
city_id int,
city_name string,
area string
)row format delimited fields terminated by '\t';

create table product_
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/爱喝兽奶帝天荒/article/detail/964266
推荐阅读
相关标签
  

闽ICP备14008679号