gpt4 book ai didi

json - 在 Power BI 中解析 .json 列

转载 作者:行者123 更新时间:2023-12-03 15:14:52 25 4
gpt4 key购买 nike

我想通过 Power BI 解析 .json 列。我直接从服务器导入了数据,并且数据中有一个 .json 列以及其他列。有没有办法解析这个json列?

例子:

       Key      IDNumber    Module      JsonResult  
012 200 Dine {"CategoryType":"dining","City":"mumbai"',"Location":"all"}
97 303 Fly {"JourneyType":"Return","Origin":"Mumbai (BOM)","Destination":"Chennai (MAA)","DepartureDate":"20-Oct-2016","ReturnDate":"21-Oct-2016","FlyAdult":"1","FlyChildren":"0","FlyInfant":"0","PromoCode":""}
276 6303 Stay {"Destination":"Clarion Chennai","CheckInDate":"14-Oct-2016","CheckOutDate":"15-Oct-2016","Rooms":"1","NoOfPax":"2","NoOfAdult":"2","NoOfChildren":"0"}

我希望保留其他列并获得简化的解析列。

最佳答案

像这样使用 Json.Document 函数

let
...
your_table=imported_the_data_directly_from_the_server,
json=Table.AddColumn(your_table, "NewColName", each Json.Document([JsonResult]))
in
json

然后使用 Table.ExpandRecordColumn 将记录扩展到表

或者点击这个按钮

enter image description here

关于json - 在 Power BI 中解析 .json 列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40846616/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com