【发布时间】:2021-03-15 08:23:33
【问题描述】:
我在 gcp 存储上有一个 parquet 文件。从简单 json {"id":1,"name":"John"} 转换的文件。
你能帮我写出正确的脚本吗?没有架构可以做到这一点吗?
create external table test (
id string,
name string
)
row format delimited
fields terminated by '\;'
stored as ?????
location '??????'
tblproperties ('skip.header.line.count'='1');
【问题讨论】: