PB级企业电商离线数仓项目实战(下)-HW
1. 用拉链表实现核心交易分析中DIM层商家维表,并实现该拉链表的回滚
ODS层数据准备
因为需要自己构造数据,我们根据已有的ods_trade_shops 创建一个新的表:
create database hw;
drop table if exists hw.ods_trade_shops;
create table hw.ods_trade_shops(
`shopid` int COMMENT '商铺ID',
`userid` int COMMENT '商铺负责人',
`areaid` int COMMENT '区域ID',
`shopname` string COMMENT '商铺名称',
`shoplevel` int COMMENT '商铺等级',
`status` int COMMENT '商铺状态',
`createtime` string COMMENT '
共有 0 条评论