- 经验
- 2
- 分贝
- 0
- 家园分
- 7
- 在线时间:
- 0 小时
- 最后登录:
- 2016-9-21
- 帖子:
- 1
- 精华:
- 0
- 注册时间:
- 2009-8-14
- UID:
- 420750
注册:2009-8-14
|
字段的分隔符以:TAB分割.
例如:
create table zb_dwa.DWA_V_D_XXX_XXX
(
month_id string,
prov_id string,
cust_id string,
cert_type string,
cert_type_is_null string,
cert_type_is_valid string,
cert_no_is_null string,
cert_no_is_valid string,
is_18_cert_no_valid string,
is_15_cert_no_valid string,
cert_addr_is_null string,
cert_addr_is_valid DOUBLE,
insert_date TIMESTAMP
) PARTITIONED BY
row format delimited fields terminated by '\t' stored as textfile;
注意:见表制定的分区字段,不能再上述的建表语句中体现。
|
|