CREATE TABLE sng_qq_data.qq_adtributor_dimention_rank_info ( `ftime` int comment '日期' , `indicator` string comment '指标' , `rank` int comment '维度排序' , `dimention_type` string comment '维度' , `dimention_value` string comment '维值' , `dimention` string comment '维度_维值' , `pred` double comment '预测值' , `act` double comment '实际值' , `delta` double comment 'diff比例' , `js` double comment '惊奇度' , `explanatorypct` double comment '解释度' , `same_direcition` string comment '是否同向' ) PARTITIONED BY (ftime list) WITH SERDEPROPERTIES ('field.delim' = '|', 'serialization.format' = 'org.apache.hadoop.hive.ql.io.orc.OrcSerde') STORED AS INPUTFORMAT 'org.apache.hadoop.hive.ql.io.orc.OrcInputFormat' OUTPUTFORMAT 'org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat' LOCATION 'hdfs://ss-tq-icy-c2-v3/user/tdw/warehouse/sng_qq_data.db/qq_adtributor_dimention_rank_info'
时间: 2024-04-20 19:25:43 浏览: 156
create table
5星 · 资源好评率100%
这是一个创建名为 `qq_adtributor_dimention_rank_info` 的 Hive 表的 SQL 语句。该表具有以下列:
- `ftime`:表示日期的整数类型列。
- `indicator`:表示指标的字符串类型列。
- `rank`:表示维度排序的整数类型列。
- `dimention_type`:表示维度类型的字符串类型列。
- `dimention_value`:表示维值的字符串类型列。
- `dimention`:表示维度_维值的字符串类型列。
- `pred`:表示预测值的双精度浮点数类型列。
- `act`:表示实际值的双精度浮点数类型列。
- `delta`:表示 diff 比例的双精度浮点数类型列。
- `js`:表示惊奇度的双精度浮点数类型列。
- `explanatorypct`:表示解释度的双精度浮点数类型列。
- `same_direction`:表示是否同向的字符串类型列。
此外,表使用了分区,分区键为 `ftime` 列,并使用 Orc 格式进行存储。表所在的位置为 `hdfs://ss-tq-icy-c2-v3/user/tdw/warehouse/sng_qq_data.db/qq_adtributor_dimention_rank_info`。
阅读全文