我有s3中的json文件格式:
{
"Id" : "123-6789",
"items" : [ {
item1: "chair",
item2: "table"
}, {
item1: "shoes",
item2: "socks"
}, {
item1: "phone",
item2: "charger"
} ]
}
需要将此加载到配置单元表中:
create EXTERNAL table Items(
Id string,
Items array<struct<item1:string,item2:string>>)
ROW FORMAT SERDE 'org.openx.data.jsonserde.JsonSerDe'
LOCATION 's3://path/';
当我从项目中选择*时,我得到:
Id items
123-6789 [{"item1":"chair","item2":"table"},{"item1":"shoes","item2":"socks"},{"item1":"phone","item2":"charger"}]
我需要以下输出:
Id Item1 Item2
123-6789 chair table
123-6789 shoes socks
123-6789 phone charger
我知道这是以前问过的问题,但我没有得到我所期望的答案。
1条答案
按热度按时间e1xvtsh31#
使用
LATERAL VIEW
以及explode
.或者,