hive建表时partitioned分区字段类型只能用string吗?可以用其他的字段类型吗?
答案:2 悬赏:0 手机版
解决时间 2021-04-13 03:38
- 提问者网友:难遇难求
- 2021-04-12 17:38
hive建表时partitioned分区字段类型只能用string吗?可以用其他的字段类型吗?
最佳答案
- 五星知识达人网友:迟山
- 2021-04-12 17:49
可以呀,根据自己的需求指定就行了!但是一般情况用string的!
比如:
use dw;
drop table if exists xxxxx;
CREATE TABLE xxxxx (
time string,
user_id int,
keyword string
)
comment "记录表"
partitioned by (ds string, hour string, type int)
stored as textfile;
比如:
use dw;
drop table if exists xxxxx;
CREATE TABLE xxxxx (
time string,
user_id int,
keyword string
)
comment "记录表"
partitioned by (ds string, hour string, type int)
stored as textfile;
全部回答
- 1楼网友:山河有幸埋战骨
- 2021-04-12 18:20
应该不能吧。
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯