mysql建模实例_05-数据仓库之建模实例

//创建用户表

drop tableifexists ods_user_info;

create table ods_user_info(

`id`string COMMENT ‘用户id‘,

`name`string COMMENT ‘姓名‘,

`birthday`string COMMENT ‘生日‘,

`gender`string COMMENT ‘性别‘,

`email`string COMMENT ‘邮箱‘,

`user_level`string COMMENT ‘用户等级‘,

`create_time`string COMMENT ‘创建时间‘) COMMENT‘用户信息‘PARTITIONED BY ( `dt`string)

row format delimited fields terminated by‘\t‘location‘/warehouse/gmall/ods/ods_user_info/‘tblproperties ("parquet.compression"="snappy")//创建订单表

drop tableifexists ods_order_info;

create table ods_order_info (

`id`string COMMENT ‘订单编号‘,

`total_amount`decimal(10,2) COMMENT ‘订单金额‘,

`order_status`string COMMENT ‘订单状态‘,

`user_id`string COMMENT ‘用户id‘,

`payment_way`string COMMENT ‘支付方式‘,

`out_trade_no`string COMMENT ‘支付流水号‘,

`create_time`string COMMENT ‘创建时间‘,

`operate_time`string COMMENT ‘操作时间‘) COMMENT‘订单表‘PARTITIONED BY ( `dt`string)

row format delimited fields terminated by‘\t‘location‘/warehouse/gmall/ods/ods_order_info/‘tblproperties ("parquet.compression"="snappy")

;//创建订单详情表

drop tableifexists ods_order_detail;

create table ods_order_detail(

`id`string COMMENT ‘订单编号‘,

`order_id`string COMMENT ‘订单号‘,

`user_id`string COMMENT ‘用户id‘,

`sku_id`string COMMENT ‘商品id‘,

`sku_name`string COMMENT ‘商品名称‘,

`order_price`string COMMENT ‘下单价格‘,

`sku_num`string COMMENT ‘商品数量‘,

`create_time`string COMMENT ‘创建时间‘) COMMENT‘订单明细表‘PARTITIONED BY ( `dt`string)

row format delimited fields terminated by‘\t‘location‘/warehouse/gmall/ods/ods_order_detail/‘tblproperties ("parquet.compression"="snappy")//创建支付流水表

drop tableifexists `ods_payment_info`;

create table `ods_payment_info`(

`id` bigint COMMENT‘编号‘,

`out_trade_no`string COMMENT ‘对外业务编号‘,

`order_id`string COMMENT ‘订单编号‘,

`user_id`string COMMENT ‘用户编号‘,

`alipay_trade_no`string COMMENT ‘支付宝交易流水编号‘,

`total_amount`decimal(16,2) COMMENT ‘支付金额‘,

`subject`string COMMENT ‘交易内容‘,

`payment_type`string COMMENT ‘支付类型‘,

`payment_time`string COMMENT ‘支付时间‘) COMMENT‘支付流水表‘PARTITIONED BY ( `dt`string)

row format delimited fields terminated by‘\t‘location‘/warehouse/gmall/ods/ods_payment_info/‘tblproperties ("parquet.compression"="snappy")

;//创建商品一级、二级、三级分类表

drop tableifexists ods_base_category1;

create table ods_base_category1(

`id`string COMMENT ‘id‘,

`name`string COMMENT ‘名称‘) COMMENT‘商品一级分类‘PARTITIONED BY ( `dt`string)

row format delimited fields terminated by‘\t‘location‘/warehouse/gmall/ods/ods_base_category1/‘tblproperties ("parquet.compression"="snappy")

;

drop tableifexists ods_base_category2;

create external table ods_base_category2(

`id`string COMMENT ‘id‘,

`name`string COMMENT ‘名称‘,

category1_idstring COMMENT ‘一级品类id‘) COMMENT‘商品二级分类‘PARTITIONED BY ( `dt`string)

row format delimited fields terminated by‘\t‘location‘/warehouse/gmall/ods/ods_base_category2/‘tblproperties ("parquet.compression"="snappy")

;

drop tableifexists ods_base_category3;

create table ods_base_category3(

`id`string COMMENT ‘id‘,

`name`string COMMENT ‘名称‘,

category2_idstring COMMENT ‘二级品类id‘) COMMENT‘商品三级分类‘PARTITIONED BY ( `dt`string)

row format delimited fields terminated by‘\t‘location‘/warehouse/gmall/ods/ods_base_category3/‘tblproperties ("parquet.compression"="snappy")

;

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值